Tags
v1
Get Tag Details
Fetch the details of a specific tag using its unique tag ID. Returns the tag’s attributes, including its name, color, and timestamps indicating when it was created and last updated. Credit Note: Retrieving tag data does not consume credits.
:::info Requires the tags:read OAuth2 scope. :::
get/v1/tags/{id}
Path parameters
idstring required
The tag ID.
Query parameters
account_idstring required
The Leadfeeder Account ID. The Account ID can be retrieved using the List Accounts endpoint.
Response
Success
Example response
{
"data": {
"type": "tag",
"id": "4b7e2c9f",
"attributes": {
"name": "Prospects",
"created_at": "2024-12-10T15:57:25Z",
"updated_at": "2024-11-24T11:50:00Z"
},
"relationships": {
"created_by": {
"id": "12345"
}
}
},
"meta": {
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}