Properties
| Name | Type | Description |
|---|---|---|
| accountEnabled | boolean | True if the account is enabled; otherwise, false. |
| displayName | string | The name to display in the address book for the user. |
| mailNickname | string | The mail alias for the user. |
| userPrincipalName | string | The user principal name ([email protected]). |
| givenName | string | |
| surname | string | |
| jobTitle | string | |
| department | string | |
| officeLocation | string | |
| mobilePhone | string | |
| usageLocation | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "UserCreateRequest",
"type": "object",
"properties": {
"accountEnabled": {
"type": "boolean",
"description": "True if the account is enabled; otherwise, false."
},
"displayName": {
"type": "string",
"description": "The name to display in the address book for the user."
},
"mailNickname": {
"type": "string",
"description": "The mail alias for the user."
},
"userPrincipalName": {
"type": "string",
"description": "The user principal name ([email protected])."
},
"givenName": {
"type": "string"
},
"surname": {
"type": "string"
},
"jobTitle": {
"type": "string"
},
"department": {
"type": "string"
},
"officeLocation": {
"type": "string"
},
"mobilePhone": {
"type": "string"
},
"usageLocation": {
"type": "string"
}
}
}