Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 369 Bytes

File metadata and controls

20 lines (15 loc) · 369 Bytes
import { Authlete } from "@authlete/typescript-sdk";

const authlete = new Authlete({
  bearer: process.env["AUTHLETE_BEARER"] ?? "",
});

async function run() {
  const result = await authlete.service.get({
    serviceId: "<id>",
  });

  console.log(result);
}

run();