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>" ] }
Successful Response
The response is of type object.
object