Get a tag
GET
/api/v3/contacts/tags/{tagId}
const url = 'https://api.tryletterhead.com/api/v3/contacts/tags/1?api=true';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.tryletterhead.com/api/v3/contacts/tags/1?api=true' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled βAuthorizations βParameters
Section titled β Parameters βPath Parameters
Section titled βPath Parameters β tagId
required
integer
The tagβs numeric identifier.
Query Parameters
Section titled βQuery Parameters β api
required
boolean
Required. Set to true to authenticate with an API key.
Responses
Section titled β Responses β200 OK
Still can’t find what you need? Contact support.