Documentation Index
Fetch the complete documentation index at: https://docs.chamelio.ai/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authentication
This endpoint requires authentication via API key. Include your API key in theX-API-Key header:
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
task_id | integer | Yes | Unique identifier for the task |
Request Example
Response
Success Response
Status Code:200 OK
Response Fields
| Field | Type | Description |
|---|---|---|
task_id | integer | ID of the task |
workflow_status | string | Current status of the workflow |
total | integer | Total number of signed documents |
documents | array | List of signed documents associated with the task |
Document Object Fields
| Field | Type | Description |
|---|---|---|
file_id | string | Unique identifier of the signed document |
file_name | string | Name of the signed document file |
step_id | string | ID of the workflow step that produced this signed document |
step_name | string | Display name of the workflow step |
download_url | string | Presigned URL to download the signed document |
expires_at | string | ISO 8601 timestamp when the download URL expires |
Error Responses
401 Unauthorized
Returned when authentication fails. See the authentication errors section for details.404 Not Found
Returned when the task doesn’t exist or you don’t have access to it.500 Internal Server Error
Returned when the request fails due to a server error.Notes
This endpoint returns signed documents from all signature steps within the task. The
total field reflects the count of documents in the response.Use Cases
This endpoint is useful for:- Post-signing retrieval - Download fully executed contracts after all parties have signed
- Document archival - Save signed documents to long-term storage or a contract management system
- Audit trails - Verify which documents were signed as part of a workflow
- Integration - Sync signed contracts with ERP, CRM, or document management platforms