Explorați documentația noastră cuprinzătoare pentru a obține informații detaliate despre utilizarea și dezvoltarea serviciului.
The eSIM and Data Plan Order Management API allows users to create, update, retrieve, and manage orders for eSIMs and data plans efficiently. This API supports operations such as placing orders, tracking order status, managing order details, and handling rejections.
Endpoint API:
Descriere:
Use this endpoint to cancel an order for eSIM/Plans.
Exemplu de cerere:
curl --location --request DELETE 'https://api.simvox.com/v1/order/{order_id}' \
--header 'Authorization: Bearer {token}' \
--header 'Content-Type: application/json' \
| Parameter | Type | Description |
| order_id | Required string | Unique ID of order. |
Endpoint API:
Descriere:
Use this endpoint to reject an order for eSIM/Plans.
Exemplu de cerere:
curl --location --request POST 'https://api.simvox.com/v1/order/reject/{order_id}' \
--header 'Authorization: Bearer {token}' \
--header 'Content-Type: application/json' \
| Parameter | Type | Description |
| order_id | Required string | Unique ID of order. |
Endpoint API:
Descriere:
Use this endpoint to get an order for eSIM/Plans.
Exemplu de cerere:
curl --location --request POST 'https://api.simvox.com/v1/order/{order_id}' \
--header 'Authorization: Bearer {token}' \
--header 'Content-Type: application/json' \
| Parameter | Type | Description |
| order_id | Required string | Unique ID of order. |
Endpoint API:
Descriere:
Use this endpoint to get all order list for eSIM/Plans.
Exemplu de cerere:
curl --location --request POST 'https://api.simvox.com/v1/orders' \
--header 'Authorization: Bearer {token}' \
--header 'Content-Type: application/json' \
| Parameter | Type | Description |