Properties
| Name | Type | Description |
|---|---|---|
| companyId | string | The unique identifier of the company account to which the terminal is reassigned. |
| inventory | boolean | Indicates if the terminal is reassigned to the inventory of the merchant account. - If **true**, the terminal is in the inventory of the merchant account and cannot process transactions. - If **false* |
| merchantId | string | The unique identifier of the merchant account to which the terminal is reassigned. |
| storeId | string | The unique identifier of the store to which the terminal is reassigned. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TerminalReassignmentTarget",
"title": "TerminalReassignmentTarget",
"properties": {
"companyId": {
"description": "The unique identifier of the company account to which the terminal is reassigned.",
"type": "string"
},
"inventory": {
"description": "Indicates if the terminal is reassigned to the inventory of the merchant account.\n- If **true**, the terminal is in the inventory of the merchant account and cannot process transactions.\n- If **false**, the terminal is reassigned directly to the merchant account and can process transactions.",
"type": "boolean"
},
"merchantId": {
"description": "The unique identifier of the merchant account to which the terminal is reassigned.",
"type": "string"
},
"storeId": {
"description": "The unique identifier of the store to which the terminal is reassigned.",
"type": "string"
}
},
"required": [
"inventory"
],
"type": "object"
}