Resource: User
SCIM representation of a user.
| JSON representation |
|---|
{ "schemas": [ string ], "emails": [ { object ( |
| Fields | |
|---|---|
schemas[] |
Required. A list of URIs which indicate the namespaces of the SCIM schemas that define the attributes present in the current JSON structure. Must only contain values defined as |
emails[] |
Optional. The list of the user's email addresses. The maximum allowed data size is 10KB. The email corresponding to |
addresses[] |
Optional. The list of the user's physical addresses. The maximum allowed data size is 10KB. |
phoneNumbers[] |
Optional. A list of the user's phone numbers. The maximum allowed data size is 1KB. |
groups[] |
Output only. The list of groups the user has direct membership in, truncated to a maximum of 1000 groups. This attribute is not returned by default and must be requested using the |
id |
Identifier. The unique ID for the user. The attribute characteristics are |
externalId |
Optional. A client-defined identifier for the SCIM user. This field is case-sensitive and mutable. The client is responsible for ensuring uniqueness, as the server does not enforce it. |
meta |
Output only. A complex attribute containing resource metadata. All |
userName |
Required. The user's primary email address. Used as the unique identifier for the user. |
name |
Required. The user's name. |
displayName |
Optional. The user's display name. Limit: 256 characters. |
active |
Optional. The user's account status ( |
urn:ietf:params:scim:schemas:extension:enterprise:2.0:User |
Optional. SCIM Enterprise User extension attributes. |
Name
SCIM representation of a User's name.
| JSON representation |
|---|
{ "familyName": string, "givenName": string } |
| Fields | |
|---|---|
familyName |
Required. The user's family name. |
givenName |
Required. The user's given name. |
SCIM representation of a user's email.
| JSON representation |
|---|
{ "value": string, "type": string, "primary": boolean } |
| Fields | |
|---|---|
value |
Required. The user's email address. |
type |
The type of the email account. Valid values are |
primary |
Output only. Indicates if this is the user's primary email. This value is set to |
Address
SCIM representation of a user's address.
| JSON representation |
|---|
{ "formatted": string, "streetAddress": string, "locality": string, "region": string, "postalCode": string, "country": string, "type": string, "primary": boolean } |
| Fields | |
|---|---|
formatted |
Full address, formatted for display. |
streetAddress |
The street address. |
locality |
The city or locality. |
region |
The region or state. |
postalCode |
The postal code or zip code. |
country |
The country. |
type |
The type of the address. Valid values are |
primary |
Indicates if this is the user's primary address. |
Phone
SCIM representation of a user's phone number.
| JSON representation |
|---|
{ "value": string, "type": string, "primary": boolean } |
| Fields | |
|---|---|
value |
Required. The phone number. |
type |
The type of the phone number. Valid values are |
primary |
Indicates if this is the user's primary phone number. |
EnterpriseUserExtension
Defines the attributes for the SCIM Enterprise User extension. The schema URN for this extension is: urn:ietf:params:scim:schemas:extension:enterprise:2.0:User. See RFC 7643 Section 4.3 for more details.
| JSON representation |
|---|
{ "employeeNumber": string, "costCenter": string, "organization": string, "department": string } |
| Fields | |
|---|---|
employeeNumber |
Optional. Identifier, typically assigned by the organization, used to identify the user inside the organization. |
costCenter |
Optional. Identifier for the cost center to which the user's expenditures are attributed. |
organization |
Optional. The name of an organization a user belongs to. |
department |
Optional. The name of a department user belongs to in the text format. |
GroupReference
SCIM representation of a user's group membership.
| JSON representation |
|---|
{ "value": string, "$ref": string, "type": string } |
| Fields | |
|---|---|
value |
Output only. The |
$ref |
Output only. The URI of the SCIM resource representing the group. |
type |
Output only. The type of group membership. Valid values are |
Methods |
|
|---|---|
|
Creates a User. |
|
Deletes a User. |
|
Retrieves a User. |
|
Retrieves a list of Users. |
|
Updates a User using SCIM patch semantics. |