POST/v1/userfavorites

Create userfavorites

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Request body application/json

display_namestringnullable
icon_classstringnullable
routestringnullable
orderinteger (int32)

Responses

idstringnullable
userIdstringnullable
displayNamestringnullable
iconClassstringnullable
routestringnullable
orderinteger (int32)
createdAtstring (date-time)
updatedAtstring (date-time)nullable
curl --request POST \
  --url 'https://api.4comply.io/v1/userfavorites' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "display_name": "Example name",
  "icon_class": "string",
  "route": "string",
  "order": 1
}'