Add your Key ID and Secret to send test requests.
Schedule an order
Schedules a purchase for a future date. Nothing is charged until it runs.
Authorization
KeyId ApiSecret x-key-id<token>
Your API key id.
In: header
x-api-secret<token>
Your API key secret.
In: header
Header Parameters
Idempotency-Key*string
Required. Repeating this operation with the same key and the same request replays the original response for 24 hours; a different request with the same key returns 409 IDEMPOTENCY_CONFLICT.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/v1/esim/future-orders" \ -H "Idempotency-Key: string" \ -H "Content-Type: application/json" \ -d '{ "planId": "69f1fd87f32cd1cae4cb6099", "dueDate": "2027-01-15 10:00", "quantity": 1, "email": "you@example.com" }'{
"data": {
"futureOrderId": "string",
"status": "pending",
"actions": {
"canCancel": true
},
"planId": "string",
"quantity": 0,
"price": {
"amount": 0,
"currency": "string"
},
"dueDate": "string",
"createdAt": "string"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "The request is not valid. See `fields` for what to correct.",
"requestId": "9f1c7b2e-…"
}
}{
"error": {
"code": "AUTHENTICATION_REQUIRED",
"message": "This endpoint requires an API key.",
"requestId": "9f1c7b2e-…"
}
}{
"error": {
"code": "PRODUCT_UNAVAILABLE",
"message": "This product is not available for purchase right now.",
"requestId": "9f1c7b2e-…"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Too many requests. Retry after the interval in `Retry-After`.",
"requestId": "9f1c7b2e-…"
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "Something went wrong on our side.",
"requestId": "9f1c7b2e-…"
}
}{
"error": {
"code": "SERVICE_RESPONSE_INVALID",
"message": "The upstream service returned an unexpected response.",
"requestId": "9f1c7b2e-…"
}
}{
"error": {
"code": "SERVICE_UNAVAILABLE",
"message": "The service is temporarily unavailable. Try again shortly.",
"requestId": "9f1c7b2e-…"
}
}