Properties
| Name | Type | Description |
|---|---|---|
| client_id | string | _t__AccountCreate::CLIENT_ID |
| client_secret | string | _t__AccountCreate::CLIENT_SECRET |
| email_address | string | _t__AccountCreate::EMAIL_ADDRESS |
| locale | string | _t__AccountCreate::LOCALE |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountCreateRequest",
"title": "AccountCreateRequest",
"required": [
"email_address"
],
"properties": {
"client_id": {
"description": "_t__AccountCreate::CLIENT_ID",
"type": "string"
},
"client_secret": {
"description": "_t__AccountCreate::CLIENT_SECRET",
"type": "string"
},
"email_address": {
"description": "_t__AccountCreate::EMAIL_ADDRESS",
"type": "string",
"format": "email"
},
"locale": {
"description": "_t__AccountCreate::LOCALE",
"type": "string"
}
},
"type": "object"
}