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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-connectivity-schema.json",
"title": "Connectivity",
"description": "Connectivity schema from Adyen API",
"type": "object",
"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"
}
}
}