Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Rate-limited to 100 requests/min. Only .xlsx, max 10 MB.
cURL
curl --request POST \ --url https://{instance}/api/v2/deliverable/import \ --header 'Content-Type: multipart/form-data' \ --header 'X-API-Key: <api-key>' \ --form file='@example-file' \ --form timezone=America/New_York
const form = new FormData();form.append('file', '<string>');form.append('timezone', 'America/New_York');const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};options.body = form;fetch('https://{instance}/api/v2/deliverable/import', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requestsurl = "https://{instance}/api/v2/deliverable/import"files = { "file": ("example-file", open("example-file", "rb")) }payload = { "timezone": "America/New_York" }headers = {"X-API-Key": "<api-key>"}response = requests.post(url, data=payload, files=files, headers=headers)print(response.text)
{ "imported": 123, "errors": [ { "row": 123, "column": "<string>", "value": "<unknown>", "message": "<string>" } ], "warnings": [ { "row": 123, "column": "<string>", "message": "<string>" } ] }
"America/New_York"
Import result. Row-level and file-structure errors (missing columns, circular parent references, unresolved identifiers, etc.) are returned here with '200' rather than failing the request.
Show child attributes