v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
SIM Card Orders

Preview SIM card orders

Preview SIM card order purchases.

post/sim_card_order_preview

Request body

address_idstring required

Uniquely identifies the address for the order.

quantityinteger required

The amount of SIM cards that the user would like to purchase in the SIM card order.

Example request

{
  "address_id": "1293384261075731499",
  "quantity": 21
}

Response

Successful Response

Example response

{
  "data": {
    "quantity": 21,
    "record_type": "sim_card_order_preview",
    "shipping_cost": {
      "amount": "2.32",
      "currency": "USD"
    },
    "sim_cards_cost": {
      "amount": "2.32",
      "currency": "USD"
    },
    "total_cost": {
      "amount": "2.32",
      "currency": "USD"
    }
  }
}