Skip to main content

Retrieve Bundles

GET 
/bundle-pricing/billing_bundles

Get all allowed bundles.

Request

Query Parameters

    filter[country_iso] string[]

    Filter by country code.

    page[number] integer

    Possible values: >= 1

    Default value: 1

    The page number to load.

    page[size] integer

    Possible values: >= 1 and <= 250

    Default value: 20

    The size of the page.

Header Parameters

    Authorization: Bearer <TOKEN> string

Responses

200: Successful Response

401: Unauthorized

Request samples


curl -L 'https://api.telnyx.com/v2/bundle-pricing/billing_bundles' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"meta": {
"total_results": 55,
"total_pages": 3,
"page_number": 2,
"page_size": 25
},
"data": [
{
"id": "7ecd040e-6bac-4139-9160-3c0427d98fea",
"name": "Australia Basic",
"slug": "basic-au-e4f8",
"cost_code": "BUNDLE-PRICING-BASIC-MRC",
"is_public": true,
"created_at": "2024-07-29",
"mrc_price": 2,
"currency": "USD",
"specs": [
"1 AU Number",
"Emergency Calling",
"All inbound and outbound calling billed pay-as-you-go"
]
}
]
}