Skip to main content

List User Tags

GET 
/user_tags

List all user tags.

Request

Query Parameters

    filter[starts_with] string

    Filter tags by prefix

Responses

200: A list of your tags

401: Unauthorized

Request samples


curl -L 'https://api.telnyx.com/v2/user_tags' \
-H 'Accept: application/json'

Response samples


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