Skip to main content
POST
/
scim
/
v2
/
Users
Create SCIM User
curl --request POST \
  --url https://paradigm.lighton.ai/scim/v2/Users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "userName": "alice",
  "name": {
    "givenName": "Alice",
    "familyName": "Durand"
  },
  "emails": [
    {
      "value": "alice@example.com",
      "primary": true
    }
  ],
  "externalId": "HR-12345"
}
'
{
  "$ref": "#/components/examples/SCIMUserAlice/value"
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Body

schemas
string[]
required
userName
string
required
Example:

"alice"

externalId
string

Identifier from the provisioning system (idempotency key)

name
object
displayName
string
nickName
string
profileUrl
string<uri>
emails
object[]
phoneNumbers
object[]
active
boolean
default:true
meta
object

Response

Created

schemas
string[]
required
userName
string
required
Example:

"alice"

id
string
Example:

"2819c223-7f76-453a-919d-413861904646"

externalId
string

Identifier from the provisioning system (idempotency key)

name
object
displayName
string
nickName
string
profileUrl
string<uri>
emails
object[]
phoneNumbers
object[]
active
boolean
default:true
groups
object[]
meta
object