POST
/
o
/
{organisation_id}
/
users
curl --request POST \
  --url https://platform.versori.com/api/v2/o/{organisation_id}/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "externalId": "<string>",
  "displayName": "<string>"
}'
{
  "id": "<string>",
  "externalId": "<string>",
  "displayName": "<string>",
  "organisationId": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer token authentication used by the Versori Platform. External consumers must provide an API key, however internal consumers must provide a JWT id_token issued by our IdP.

Path Parameters

organisation_id
string
required

Body

application/json

Request to create a new End User

Response

201
application/json

Created

The response is of type object.