API v1 ReferenceCategories
Create a category
Create a tenant-owned custom category with optional localized content. Browse request parameters, authentication requirements, response payloads, and working…
Create a tenant-owned custom category with optional localized content.
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/api/v1/categories" \ -H "Content-Type: application/json" \ -d '{ "title": "Security Reviews", "translations": [ { "languages_code": "de-DE", "title": "Sicherheitsprüfungen" } ] }'{ "success": true, "data": { "category": { "id": "string", "title": "string", "icon": "string", "tenant": "string", "translations": [ { "id": "string", "languages_code": "en-US", "title": "string" } ] } }}How is this guide?