Skip to content

Users

Unidy allows managing users through a REST API. Currently it's possible to:

  • Fetch a user by ID
  • Create/ invite new users (decide to send out invitation email or not)
  • Update user
  • filter users by email
  • update a users email address

See list of all available resources here

The request body must comply with JSON Schema

Example

Get an access token

  curl -X 'POST' \
    'https://<YOUR UNIDY DOMAIN>/api/v1/users' \
    -H 'Content-Type: application/json' \
    -H 'Authorization: bearer <YOUR ACCESS TOKEN>' \
    -d '{ email: [email protected] }'