Properties
| Name | Type | Description |
|---|---|---|
| callback_url | string | _t__ApiAppResponse::CALLBACK_URL |
| client_id | string | _t__ApiAppResponse::CLIENT_ID |
| created_at | integer | _t__ApiAppResponse::CREATED_AT |
| domains | array | _t__ApiAppResponse::DOMAINS |
| name | string | _t__ApiAppResponse::NAME |
| is_approved | boolean | _t__ApiAppResponse::IS_APPROVED |
| oauth | object | |
| options | object | |
| owner_account | object | |
| white_labeling_options | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiAppResponse",
"title": "ApiAppResponse",
"description": "_t__ApiAppResponse::DESCRIPTION",
"properties": {
"callback_url": {
"description": "_t__ApiAppResponse::CALLBACK_URL",
"type": "string",
"nullable": true
},
"client_id": {
"description": "_t__ApiAppResponse::CLIENT_ID",
"type": "string"
},
"created_at": {
"description": "_t__ApiAppResponse::CREATED_AT",
"type": "integer"
},
"domains": {
"description": "_t__ApiAppResponse::DOMAINS",
"type": "array",
"items": {
"type": "string"
}
},
"name": {
"description": "_t__ApiAppResponse::NAME",
"type": "string"
},
"is_approved": {
"description": "_t__ApiAppResponse::IS_APPROVED",
"type": "boolean"
},
"oauth": {
"$ref": "#/components/schemas/ApiAppResponseOAuth"
},
"options": {
"$ref": "#/components/schemas/ApiAppResponseOptions"
},
"owner_account": {
"$ref": "#/components/schemas/ApiAppResponseOwnerAccount"
},
"white_labeling_options": {
"$ref": "#/components/schemas/ApiAppResponseWhiteLabelingOptions"
}
},
"type": "object",
"x-internal": true
}