Get User Bundle Resources
GET/bundle-pricing/user_bundles/:user_bundle_id/resources
Retrieves the resources of a user bundle by its ID.
Request
Path Parameters
billing_bundle_id uuidrequired
Header Parameters
Authorization: Bearer <TOKEN> string
Responses
200: Successful Response
- application/json
401: Unauthorized
404: Not Found
Request samples
curl -L 'https://api.telnyx.com/v2/bundle-pricing/user_bundles/:user_bundle_id/resources' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": [
{
"id": "ca1d2263-d1f1-43ac-ba53-248e7a4bb26a",
"resource": "+15617819942",
"resource_type": "number",
"created_at": "2025-01-20",
"updated_at": "2025-01-20"
}
]
}