This API provides a flexible format-based interface for most routes by appending format suffixes like .json
, .xml
, .html
, .csv
, or .xls
to any valid endpoint.
Example endpoint: /crm/list
Available formats:
/crm/list.json
– JSON API/crm/list.xml
– XML API/crm/list.html
– Bare HTML version (no menu; iframe-friendly)/crm/list.csv
– Export as CSV/crm/list.xls
– Export as ExcelAll requests require a valid Bearer token, which can be generated through the organization portal.
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Tokens are scoped per organization and expire according to security settings.
{
"status": "ok",
"data": [
{ "id": 1, "name": "Acme Corp", "status": "active" },
{ "id": 2, "name": "Beta LLC", "status": "lead" }
]
}
id,name,status
1,Acme Corp,active
2,Beta LLC,lead
.html
for iframe-friendly views without menus..json
or .xml
for use in scripts..csv
or .xls
for spreadsheet processing.