Properties
| Name | Type | Description |
|---|---|---|
| callback_url | string | _t__ApiAppCreate::CALLBACK_URL |
| custom_logo_file | string | _t__ApiAppCreate::CUSTOM_LOGO_FILE |
| domains | array | _t__ApiAppCreate::DOMAINS |
| name | string | _t__ApiAppCreate::NAME |
| oauth | object | |
| options | object | |
| white_labeling_options | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiAppCreateRequest",
"title": "ApiAppCreateRequest",
"required": [
"name",
"domains"
],
"properties": {
"callback_url": {
"description": "_t__ApiAppCreate::CALLBACK_URL",
"type": "string"
},
"custom_logo_file": {
"description": "_t__ApiAppCreate::CUSTOM_LOGO_FILE",
"type": "string",
"format": "binary"
},
"domains": {
"description": "_t__ApiAppCreate::DOMAINS",
"type": "array",
"items": {
"type": "string"
},
"maxItems": 2,
"minItems": 1
},
"name": {
"description": "_t__ApiAppCreate::NAME",
"type": "string"
},
"oauth": {
"$ref": "#/components/schemas/SubOAuth"
},
"options": {
"$ref": "#/components/schemas/SubOptions"
},
"white_labeling_options": {
"$ref": "#/components/schemas/SubWhiteLabelingOptions"
}
},
"type": "object"
}