Check out our upcoming events and meetups! View events →
List all user tags.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const userTags = await client.userTags.list();
console.log(userTags.data);{
"data": {
"outbound_profile_tags": [
"my-tag"
],
"number_tags": [
"my-tag"
]
}
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Consolidated filter parameter (deepObject style). Originally: filter[starts_with]
Show child attributes
A list of your tags
Show child attributes
Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const userTags = await client.userTags.list();
console.log(userTags.data);{
"data": {
"outbound_profile_tags": [
"my-tag"
],
"number_tags": [
"my-tag"
]
}
}