For the complete documentation index, see llms.txt. This page is also available as Markdown.

Response Envelope

Every response, success or error, is wrapped in the same meta envelope:

{
  "data": { ... },
  "meta": {
    "status": "success",
    "errors": [],
    "warnings": []
  }
}

meta.warnings can carry non-fatal notices alongside a successful response — for example, two groups in a workspace sharing the same user_attribute_precedence.

Last updated

Was this helpful?