API DocsRESTUser service

UpdateUserOrganizationActive

Used to toggle a user's active status within their organization.

POST
/api/v2/users/{userId}/active

Request Body

application/jsonRequired

organizationIdstring

activeboolean

Path Parameters

userId
Required
string

curl -X POST "<API_URL>/api/v2/users/string/active" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "organizationId": "string",
    "active": true
  }'

A successful response.

{}