GET
/
api
/
v1
/
takeouts
/
get
/
{job_id}
import os
from syllable_sdk import SyllableSDK


with SyllableSDK(
    api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:

    res = ss_client.takeouts.takeouts_get_by_job_id(job_id="<id>")

    # Handle response
    print(res)
{
  "job_id": "<string>",
  "status": "pending",
  "updated_at": "2023-11-07T05:31:56Z",
  "file_names": [
    "<string>"
  ]
}

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

job_id
string
required

Response

200
application/json

Successful Response

The response is of type object.