PATCH
/
api
/
v1
/
categories
Update Categories (Bulk)
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": [
    {}
  ]
}

Authentication

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"}]'

Request Body Schema

categories
array
required
Array of category updates

Response Schema

updated
array
Array of updated category IDs

Notes

  • Requires API key with write_access permission
  • Bulk operation for efficiency
  • Category updates apply to all associated partnerships