Skip to main content

Search detail records

GET 
/detail_records

Search for any detail record across the Telnyx Platform

Request

Query Parameters

    filter object

    Filter records on a given record attribute and value.
    Example: filter[status]=delivered.
    Required: filter[record_type] must be specified.

    Examples:
    sort string[]

    Specifies the sort order for results.
    Example: sort=-created_at

    Examples:
    page object

    Consolidated page parameter (deepObject style). Originally: page[number], page[size]

    Examples:

Responses

200: Successful

Request samples


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

Response samples


{
"data": [
{},
{},
{},
{},
{},
{},
{}
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}