Base URL
All API requests should be made to:Conventions
- JSON: All request and response bodies are JSON-encoded. Set the
Content-Typeheader toapplication/jsonfor requests with a body. - camelCase: Object attribute names use
camelCase(notsnake_caseorkebab-case). - UUIDs: All resource identifiers are UUID v4 strings.
- Slugs: Slugs use lowercase alphanumeric characters with hyphens.
- Dates: Date values use ISO 8601 format —
2021-07-24for dates and2021-07-24T17:40:03.633Zfor timestamps. - Null handling: Empty strings are automatically converted to
nullon write. Setting a property tonullexplicitly unsets it.