Preview SIM card order purchases.
Successful response
{- "address_id": "1293384261075731499",
- "quantity": 21
}
{- "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"
}
}
}
Get all SIM card orders according to filters.
import telnyx telnyx.api_key = "YOUR_API_KEY" telnyx.SimCardOrder.list(filter={"created_at":"2018-02-02T22:25:27.521Z","updated_at":"2018-02-02T22:25:27.521Z"})
{- "data": [
- {
- "cost": {
- "amount": "2.52",
- "currency": "USD"
}, - "created_at": "2018-02-02T22:25:27.521Z",
- "id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
- "order_address": {
- "administrative_area": "IL",
- "country_code": "US",
- "extended_address": "Suite 504",
- "id": "1293384261075731499",
- "locality": "Chicago",
- "postal_code": "60654",
- "street_address": "311 W Superior St"
}, - "quantity": 21,
- "record_type": "sim_card_order",
- "status": "pending",
- "updated_at": "2018-02-02T22:25:27.521Z"
}
], - "meta": {
- "page_number": 2,
- "page_size": 25,
- "total_pages": 3,
- "total_results": 55
}
}
Creates a new order for SIM cards.
Successful Response
{- "address_id": "1293384261075731499",
- "quantity": 23
}
{- "data": {
- "cost": {
- "amount": "2.52",
- "currency": "USD"
}, - "created_at": "2018-02-02T22:25:27.521Z",
- "id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
- "order_address": {
- "administrative_area": "IL",
- "country_code": "US",
- "extended_address": "Suite 504",
- "id": "1293384261075731499",
- "locality": "Chicago",
- "postal_code": "60654",
- "street_address": "311 W Superior St"
}, - "quantity": 21,
- "record_type": "sim_card_order",
- "status": "pending",
- "updated_at": "2018-02-02T22:25:27.521Z"
}
}
Get a single SIM card order by its ID.
Successful Response
object (SIMCardOrder) | |||||||||||||||||||
|
Resource not found
import telnyx telnyx.api_key = "YOUR_API_KEY" telnyx.SimCardOrder.retrieve("id")
{- "data": {
- "cost": {
- "amount": "2.52",
- "currency": "USD"
}, - "created_at": "2018-02-02T22:25:27.521Z",
- "id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
- "order_address": {
- "administrative_area": "IL",
- "country_code": "US",
- "extended_address": "Suite 504",
- "id": "1293384261075731499",
- "locality": "Chicago",
- "postal_code": "60654",
- "street_address": "311 W Superior St"
}, - "quantity": 21,
- "record_type": "sim_card_order",
- "status": "pending",
- "updated_at": "2018-02-02T22:25:27.521Z"
}
}