Conventions
Last updated 24 days ago
Conventions
Format
- Requests & responses:
application/json. - IDs: UUID or SID (short ID) are accepted for most resources.
- Timestamps: ISO 8601 (UTC).
Authentication
Bearer token in the Authorization header. Without a valid token → 401.
Pagination
List endpoints accept page and pageSize (not limit/offset) and return an envelope with a pagination object:
* pageSize defaults to 50 for Lists and List Items.
json
To fetch the next page, increase page until page >= totalPages.
Difference from MCP
The MCP server uses a different schema: limit/offset as input and { items, total, limit, offset, has_more } as the response. The REST API uses page/pageSize and the pagination envelope above.
HTTP status codes
Rate limiting
As with the MCP endpoint: 240 requests/minute per token. When exceeded, a 429 is returned with a Retry-After header.
Method semantics
GET— readPOST— createPATCH— partial update (only the fields you send are changed)DELETE— delete (for Lists/Items: soft delete → trash)