Skip to main content
POST
/
scim
/
{workspace_id}
/
v2
/
Users
Create a SCIM user
curl --request POST \
  --url https://public-api.tryriot.com/scim/{workspace_id}/v2/Users \
  --header 'Content-Type: application/scim+json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "active": true,
  "emails": [
    {
      "primary": true,
      "value": "[email protected]"
    }
  ],
  "name": {
    "familyName": "<string>",
    "givenName": "<string>"
  },
  "timezone": "<string>",
  "userName": "<string>"
}'
{}

Authorizations

x-api-key
string
header
required

Path Parameters

workspace_id
string<uuid>
required

Body

application/scim+json
emails
object[]
required
Minimum length: 1
name
object
required
userName
string
required

Unique identifier for the user

active
boolean

Whether the user is active. Defaults to true if not provided

timezone
string

User's timezone in Olson format (e.g., 'America/Los_Angeles'). Defaults to workspace timezone if not provided.

Response

SCIM user created

The response is of type object.