Authentication
Include your Secret Key in the Authorization header as a Bearer token.
Authorization: Bearer sk_test_...
Request Body
The unique identifier of the eSIM package (from the inventory endpoint).
Number of eSIMs to purchase (Max: 5).
Response
Returns the created order details.
Unique identifier for the eSIM order.
The total amount to be paid for this order.
The currency code for the payment.
curl -X POST https://api.pavewaygroup.com/v1/esim/orders \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json" \
-d '{
"package_id": "pkg_world_5gb",
"quantity": 1
}'