Skip to main content

List User Tags

GET 
/user_tags

List all user tags.

Request

Query Parameters

    filter object

    Consolidated filter parameter (deepObject style). Originally: filter[starts_with]

Responses

200: A list of your tags

401: Unauthorized

Request samples


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

Response samples


{
"data": {
"outbound_profile_tags": [
"my-tag"
],
"number_tags": [
"my-tag"
]
}
}