Documentation Index
Fetch the complete documentation index at: https://docs.ascendgtm.net/llms.txt
Use this file to discover all available pages before exploring further.
Your First API Call
This guide walks through making a real API call and understanding the response.Example: List HubSpot Contacts
Full response
Compact response (saves tokens)
Add"format": "compact" to strip the wrapper:
Field-picked response (saves more tokens)
Add"fields": ["id", "properties.email"]:
Understanding Errors
All errors follow this structure:| Code | Meaning |
|---|---|
AUTH_FAILED | Invalid or missing bearer token |
TENANT_NOT_FOUND | Token valid but tenant config missing |
TOKEN_MISSING | No API token stored for this provider |
TOKEN_EXPIRED | OAuth token expired (auto-refreshes within 10min) |
UPSTREAM_ERROR | The target API returned an error |
VALIDATION_ERROR | Invalid request parameters |
RATE_LIMITED | Too many requests |