GET
/
api
/
v1
/
takeouts
/
get
/
{job_id}
/
file
/
{file_name}
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_file(job_id="<id>", file_name="example.file")

    # Handle response
    print(res)
"<any>"

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

job_id
string
required
file_name
string
required

Response

200
application/json
Successful Response

The response is of type any.