Skip to main content

List Auto-Response Settings

GET 
/messaging_profiles/:profile_id/autoresp_configs

List Auto-Response Settings

Request

Path Parameters

    profile_id uuidrequired

Query Parameters

    country_code Country Code
    created_at[gte] Created At[Gte]
    created_at[lte] Created At[Lte]
    updated_at[gte] Updated At[Gte]
    updated_at[lte] Updated At[Lte]

Responses

200: Successful Response

default: Unexpected error

Request samples


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

Response samples


{
"data": [
{
"op": "start",
"keywords": [
"START",
"BEGIN"
],
"resp_text": "Thank you for subscribing US customer.",
"country_code": "US",
"id": "677ec1cb-949e-4aeb-a1c3-6d9ddffc1409",
"created_at": "2023-03-21T23:37:45.858535+00:00",
"updated_at": "2023-03-21T23:37:45.858535+00:00"
},
{
"op": "stop",
"keywords": [
"END",
"STOP"
],
"resp_text": "You have unsubscribed.",
"country_code": "US",
"id": "54b7e19f-98a8-416f-81d1-a2782eade48b",
"created_at": "2023-03-10T21:54:46.293380+00:00",
"updated_at": "2023-03-10T21:54:46.293380+00:00"
},
{
"op": "start",
"keywords": [
"START"
],
"resp_text": "Thank you for subscribing.",
"country_code": "*",
"id": "cfe07be1-2369-433f-be00-eb176008e834",
"created_at": "2023-03-14T14:46:21.097735+00:00",
"updated_at": "2023-03-14T14:46:21.097735+00:00"
}
],
"meta": {
"page_number": 1,
"page_size": 5,
"total_pages": 1,
"total_results": 3
}
}