Properties
| Name | Type | Description |
|---|---|---|
| companyAccount | string | Your company account. |
| inventoryTerminals | array | Array that returns a list of all terminals that are in the inventory of the company account. |
| merchantAccounts | array | Array that returns a list of all merchant accounts belonging to the company account. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetTerminalsUnderAccountResponse",
"title": "GetTerminalsUnderAccountResponse",
"properties": {
"companyAccount": {
"description": "Your company account.",
"type": "string"
},
"inventoryTerminals": {
"description": "Array that returns a list of all terminals that are in the inventory of the company account.",
"items": {
"type": "string"
},
"type": "array"
},
"merchantAccounts": {
"description": "Array that returns a list of all merchant accounts belonging to the company account.",
"items": {
"$ref": "#/components/schemas/MerchantAccount"
},
"type": "array"
}
},
"required": [
"companyAccount"
],
"type": "object"
}