Skip to main content
POST
/
api
/
v1
/
takeouts
/
create
Typescript (SDK)
import { SyllableSDK } from "syllable-sdk";

const syllableSDK = new SyllableSDK({
  apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});

async function run() {
  const result = await syllableSDK.takeouts.create();

  console.log(result);
}

run();
{
  "job_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Syllable-API-Key
string
header
required

Response

200 - application/json

Successful Response

job_id
string
required
created_at
string<date-time>
required