v1

latestOpenAPI 3.0.02026-07-2671142187.3 KB
Card Terminal

Get card terminals

get/card-terminals

Query parameters

currencystring
Example:CAD

The abbreviation of the card terminal's currency. Possible values are CAD | USD

statusstring
Example:ACTIVE

The card terminal's status. possible values are ACTIVE | INACTIVE

Response

Successful

idinteger

Id of the terminal.

nicknamestring

Nickname of terminal

currencystring

Currency of terminal. possible values are CAD | USD

statusstring

Status of Terminal. possible values are ACTIVE | INACTIVE

Example response

[
  {
    "id": 123,
    "nickname": "Terminal 1",
    "currency": "CAD",
    "status": "ACTIVE",
    "address": {
      "street1": "Street 1",
      "street2": "Street 2",
      "city": "Calgary",
      "province": "AB",
      "country": "CAN",
      "postalCode": "H0H0H0"
    }
  }
]