cURL
curl --request PATCH \ --url https://app.journeybee.io/api/v1/categories \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "categories": [ { "id": 123, "label": "<string>" } ] }'
{ "updated": [ {} ] }
Update multiple categories in a single operation
curl -X PATCH "https://app.journeybee.io/api/v1/categories" \ -H "Authorization: Bearer your-api-key-uuid" \ -H "Content-Type: application/json" \ -d '[{"id": 1, "label": "Updated Technology Services"}]'
Show Category Update Object
write_access