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
- application/json
401: Unauthorized
- application/json
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"
]
}
}
{
"errors": [
{
"code": "string",
"detail": "string",
"meta": {
"url": "string"
},
"title": "string",
"source": {
"pointer": "string"
}
}
]
}