Properties
| Name | Type | Description |
|---|---|---|
| accountGroups | array | The list of [account groups](https://docs.adyen.com/account/account-structure#account-groups) associated with this user. |
| associatedMerchantAccounts | array | The list of [merchant accounts](https://docs.adyen.com/account/account-structure#merchant-accounts) associated with this user. |
| string | The email address of the user. | |
| name | object | The user's full name. Allowed length: 1—80 characters. |
| roles | array | The list of [roles](https://docs.adyen.com/account/user-roles) for this user. |
| timeZoneCode | string | The [tz database name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) of the time zone of the user. For example, **Europe/Amsterdam**. |
| username | string | The user's email address that will be their username. Must be the same as the one in the `email` field. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateCompanyUserRequest",
"title": "CreateCompanyUserRequest",
"properties": {
"accountGroups": {
"description": "The list of [account groups](https://docs.adyen.com/account/account-structure#account-groups) associated with this user.",
"items": {
"type": "string"
},
"type": "array"
},
"associatedMerchantAccounts": {
"description": "The list of [merchant accounts](https://docs.adyen.com/account/account-structure#merchant-accounts) associated with this user.",
"items": {
"type": "string"
},
"type": "array"
},
"email": {
"description": "The email address of the user.",
"type": "string"
},
"name": {
"description": "The user's full name.\n\nAllowed length: 1\u201480 characters.",
"maxLength": 80,
"minLength": 1,
"$ref": "#/components/schemas/Name"
},
"roles": {
"description": "The list of [roles](https://docs.adyen.com/account/user-roles) for this user.",
"items": {
"type": "string"
},
"type": "array"
},
"timeZoneCode": {
"description": "The [tz database name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) of the time zone of the user. For example, **Europe/Amsterdam**.",
"type": "string"
},
"username": {
"description": "The user's email address that will be their username. Must be the same as the one in the `email` field.",
"maxLength": 255,
"minLength": 1,
"type": "string"
}
},
"required": [
"name",
"email",
"username"
],
"type": "object"
}