Skip to main content

Get Bundle By Id

GET 
/bundle-pricing/billing_bundles/:bundle_id

Get a single bundle by ID.

Request

Path Parameters

    billing_bundle_id uuidrequired

Header Parameters

    Authorization: Bearer <TOKEN> string

Responses

200: Successful Response

401: Unauthorized

404: Resource not found

Request samples


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

Response samples


{
"data": {
"id": "7ecd040e-6bac-4139-9160-3c0427d98fea",
"name": "Australia Basic",
"slug": "basic-au-e4f8",
"cost_code": "BUNDLE-PRICING-BASIC-MRC",
"active": true,
"is_public": true,
"created_at": "2024-07-29",
"bundle_limits": [
{
"id": "e6a32ea9-953b-4622-bbba-9f7bcf7e6717",
"service": "E911",
"metric": "number",
"limit": 1,
"rate": "5",
"country_iso": "AU",
"country_code": 61,
"direction": "inbound",
"types": [
"local"
],
"created_at": "2024-07-29",
"updated_at": "2024-07-29",
"billing_service": "emergency"
}
]
}
}