Adyen · Schema

Connectivity

PaymentsFinancial ServicesFintech

Properties

Name Type Description
simcardStatus string Indicates the status of the SIM card in the payment terminal. Can be updated and received only at terminal level, and only for models that support cellular connectivity. Possible values: * **ACTIVATED
View JSON Schema on GitHub

JSON Schema

adyen-connectivity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Connectivity",
  "title": "Connectivity",
  "properties": {
    "simcardStatus": {
      "description": "Indicates the status of the SIM card in the payment terminal. Can be updated and received only at terminal level, and only for models that support cellular connectivity.\n\nPossible values:\n* **ACTIVATED**: the SIM card is activated. Cellular connectivity may still need to be enabled on the terminal itself, in the **Network** settings.\n* **INVENTORY**: the SIM card is not activated. The terminal can't use cellular connectivity.",
      "enum": [
        "ACTIVATED",
        "INVENTORY"
      ],
      "type": "string"
    }
  },
  "type": "object"
}