Skip to main content
GET
/
user_tags
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const userTags = await client.userTags.list();

console.log(userTags.data);
{
  "data": {
    "outbound_profile_tags": [
      "my-tag"
    ],
    "number_tags": [
      "my-tag"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

filter
object

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

Response

A list of your tags

data
object