Create User
This endpoint is responsible for creating a new user. For more information, check the specification: https://tools.ietf.org/html/rfc7644#section-3.3.
The VMware Identity Services tenant ID
my-tenant
Show optional properties
{
"userName": "my_user_name"
}
{
"name": {
"familyName": "MyFamilyName",
"middleName": "MyMiddleName",
"givenName": "MyGivenName"
},
"displayName": "My Display Name",
"nickName": "My Casual Name",
"profileUrl": "https://example.com/usergroup/scim/v2/Users/da916af2-4c19-4ddb-89bd-363dbb79da29",
"active": true,
"emails": [
{
"value": "[email protected]",
"primary": "true",
"display": "my work email"
}
],
"phoneNumbers": [
{
"value": "555-555-5555",
"type": "work",
"primary": true
}
],
"ims": [
{
"value": "[email protected]",
"type": "skype",
"primary": true,
"display": "ims_example"
}
],
"photos": [
{
"value": "https://photos.example.com/profilephoto/72930000000Ccne/F",
"type": "photo",
"primary": true,
"display": "Example photo"
}
],
"addresses": [
{
"type": "home",
"region": "CA",
"country": "USA",
"primary": true,
"formatted": "456 Hollywood Blvd\nHollywood, CA 91608 USA",
"streetAddress": "456 Hollywood Blvd",
"postalCode": "91608",
"locality": "Hollywood"
}
],
"userName": "my_user_name",
"groups": [
{
"value": "e9e30dba-f08f-4109-8486-d5c6a331660a",
"$ref": "https://example.com/v2/Groups/e9e30dba-f08f-4109-8486-d5c6a331660a",
"display": "Example Group"
}
],
"title": "Example title",
"id": "string",
"externalId": "string",
"meta": {
"location": "string",
"version": "string",
"lastModified": "string",
"resourceType": "string",
"created": "string"
},
"schemas": [
"string"
]
}
The name of the user
The name of the user, suitable for display to end-users
The casual way to address the user
A fully qualified URL to a page representing the user's online profile
A Boolean value indicating the user's administrative status
The list of emails associated with the user
The phone numbers for the user
The instant messaging addresses for the user
The URIs of photos of the user
The physical mailing addresses for this user
The unique identifier of the user
The list of groups that the user belongs to
The title of the user
The unique identifier of the SCIM resource
The SCIM resource external identifier
The meta information of the resource
The SCIM resource schema URIs
The user was successfully created.
"UserMedia Object"
The name of the user
The name of the user, suitable for display to end-users
The casual way to address the user
A fully qualified URL to a page representing the user's online profile
A Boolean value indicating the user's administrative status
The list of emails associated with the user
The phone numbers for the user
The instant messaging addresses for the user
The URIs of photos of the user
The physical mailing addresses for this user
The unique identifier of the user
The list of groups that the user belongs to
The title of the user
The unique identifier of the SCIM resource
The SCIM resource external identifier
The meta information of the resource
The SCIM resource schema URIs
The request contains invalid information.
User or directory not found.
User already exists.
Unexpected error.
curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/scim+json' -d '{"userName:"string"}' https://{api_host}/usergroup/t/{tenant}/scim/v2/Users