Returns a list of all your sim cards
Successful response
Array of objects (SIMCard) | |
object (Metadata) |
Authentication error
Authorization error
Array of objects (Error Base) | |||||||||
Array
|
{- "data": [
- {
- "enabled": true,
- "iccid": "string",
- "id": "string",
- "sim_card_group": {
- "id": "string",
- "data_allocation": "string",
- "ingress_site_id": "string",
- "egress_site_id": "string",
- "created_at": "string",
- "updated_at": "string"
}, - "tags": [
- "string"
], - "updated_at": "string"
}
], - "metadata": {
- "total_pages": 13,
- "total_results": 13,
- "page_number": 3,
- "page_size": 1
}
}
Returns the details regarding a specific SIM card.
Successful response
object (SIMCard) | |
Authentication error
Array of objects (Error Base) | |||||||||
Array
|
Authorization error
Array of objects (Error Base) | |||||||||
Array
|
{- "data": {
- "enabled": true,
- "iccid": "string",
- "id": "string",
- "sim_card_group": {
- "id": "string",
- "data_allocation": "string",
- "ingress_site_id": "string",
- "egress_site_id": "string",
- "created_at": "string",
- "updated_at": "string"
}, - "tags": [
- "string"
], - "updated_at": "string"
}
}
Updates a specific SIM card.
Successful response
object (SIMCard) | |
Authentication error
Array of objects (Error Base) | |||||||||
Array
|
Authorization error
Array of objects (Error Base) | |||||||||
Array
|
{- "tags": [
- "string"
], - "enabled": true
}
{- "data": {
- "enabled": true,
- "iccid": "string",
- "id": "string",
- "sim_card_group": {
- "id": "string",
- "data_allocation": "string",
- "ingress_site_id": "string",
- "egress_site_id": "string",
- "created_at": "string",
- "updated_at": "string"
}, - "tags": [
- "string"
], - "updated_at": "string"
}
}
A list of all the unique tags currently used across your SIM cards.
Authentication error
Array of objects (Error Base) | |||||||||
Array
|
Authorization error
Array of objects (Error Base) | |||||||||
Array
|
{- "data": {
- "tags": [
- "string"
]
}
}
Register a SIM card code.
SIM card update request
registration_codes | Array of strings A list of SIM card registration codes. |
sim_card_group_id | string <uuid> The SIM card group to which the provided SIM cards should be associated with after registration. If no ID is provided then the SIM cards will be registered to the default SIM card group. |
tags | Array of strings A list of tags to be applied to the SIM cards after registration. |
Successful response
Authentication error
Array of objects (Error Base) | |||||||||
Array
|
Authorization error
Array of objects (Error Base) | |||||||||
Array
|
{- "registration_codes": [
- "string"
], - "sim_card_group_id": "ca4fc7dc-162e-4665-a0ca-94e14f96f724",
- "tags": [
- "string"
]
}
{- "data": {
- "failed_registrations": [
- "string"
], - "successful_registrations": [
- "string"
]
}
}
Bulk updates to perform on a list of SIM cards
SIM card bulk update request
ids | Array of strings <uuid> A list of IDs for which the changes will apply to. |
enabled | boolean Whether the SIM card should be enabled or disabled. |
sim_card_group_id | string <uuid> The SIM card group to which all the provided SIM card IDs will be moved to. |
tags | Array of strings A list of tags to apply to the provided SIM cards. |
status | string The SIM card status to which all the provided SIM card IDs will be moved to. |
authorized_imeis | Array of strings A list of authorized IMEIs that will be applied to all the provided SIM cards. |
Successful response
Authentication error
Array of objects (Error Base) | |||||||||
Array
|
Authorization error
Array of objects (Error Base) | |||||||||
Array
|
{- "ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "enabled": true,
- "sim_card_group_id": "ca4fc7dc-162e-4665-a0ca-94e14f96f724",
- "tags": [
- "string"
], - "status": "enabled",
- "authorized_imeis": [
- "string"
]
}
{- "failed_updates": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "successful_updates": {
- "enabled": true,
- "iccid": "string",
- "id": "string",
- "sim_card_group": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string"
}, - "tags": [
- "string"
], - "updated_at": "string"
}
}