POST
/
scim
/
v2
/
Users
curl --request POST \
  --url https://cloud.local.wirtual.dev/api/v2/scim/v2/Users \
  --header 'Authorizaiton: <api-key>' \
  --header 'Content-Type: */*' \
  --data '{
  "active": true,
  "emails": [
    {
      "display": "<string>",
      "primary": true,
      "type": "<string>",
      "value": "jsmith@example.com"
    }
  ],
  "groups": [
    {}
  ],
  "id": "<string>",
  "meta": {
    "resourceType": "<string>"
  },
  "name": {
    "familyName": "<string>",
    "givenName": "<string>"
  },
  "schemas": [
    "<string>"
  ],
  "userName": "<string>"
}'
{
  "active": true,
  "emails": [
    {
      "display": "<string>",
      "primary": true,
      "type": "<string>",
      "value": "jsmith@example.com"
    }
  ],
  "groups": [
    {}
  ],
  "id": "<string>",
  "meta": {
    "resourceType": "<string>"
  },
  "name": {
    "familyName": "<string>",
    "givenName": "<string>"
  },
  "schemas": [
    "<string>"
  ],
  "userName": "<string>"
}

Authorizations

Authorizaiton
string
header
required

Body

*/*
New user
active
boolean
emails
object[]
groups
object[]
id
string
meta
object
name
object
schemas
string[]
userName
string

Response

200 - application/json
OK
active
boolean
emails
object[]
groups
object[]
id
string
meta
object
name
object
schemas
string[]
userName
string