Skip to main content

List Customer Documents

List documents across all customers.

Endpoint

GET /api/v3/reseller/transcripts/documents

Query Parameters

ParameterTypeDescription
customer_idintegerFilter by customer
pageintegerPage number
per_pageintegerItems per page

Response

{
"count": 25,
"total_results": 1000,
"result": [
{
"id": 456,
"customer_id": 123,
"customer_name": "Acme Corp",
"name": "Team Meeting Notes",
"type": "transcript",
"status": "completed",
"created_at": "2025-01-17T10:00:00Z"
}
]
}

Examples

cURL

curl https://api.scriptix.io/api/v3/reseller/transcripts/documents \
-H "Authorization: Bearer YOUR_API_KEY"

Python

response = requests.get(
'https://api.scriptix.io/api/v3/reseller/transcripts/documents',
headers={'Authorization': 'Bearer YOUR_API_KEY'},
params={'customer_id': 123}
)

docs = response.json()
print(f"Total documents: {docs['total_results']}")