👋 Welcome to the new Omni docs! We're still migrating, but the old docs are available at docs-legacy.omni.co.
cURL
curl --request POST \ --url https://{instance}.omniapp.co/api/scim/v2/users \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "displayName": "<string>", "userName": "jsmith@example.com", "urn:omni:params:1.0:UserAttribute": {} } '
{ "id": "<string>", "userName": "<string>", "displayName": "<string>", "meta": { "resourceType": "User", "created": "2023-11-07T05:31:56Z", "lastModified": "2023-11-07T05:31:56Z" }, "schemas": [ "<string>" ] }
Create a new user (SCIM 2.0)
Requires an Organization API Key. Personal Access Tokens (PATs) are not supported for this endpoint.
Include in the Authorization header as: Bearer ORGANIZATION_API_KEY
Authorization
Bearer ORGANIZATION_API_KEY
User display name
User email address
Custom user attributes
User created successfully
Show child attributes
Was this page helpful?