project_id
: Narrow down the tags to those used in a specific project.team_id
: Limit the tags to those associated with a specific team.org_id
: Restrict the tags to those within a certain organization.group_by_agent=true
, the response organizes tags under each corresponding agent.curl --location -g --request GET 'https:///v2/api/agent/tags' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Tags retrieved successfully",
"data": {
"grouped_by_agent": false,
"tags": [
"um",
"moon",
"34",
"hn",
"098",
"2354",
"sky",
"anime"
],
"filters": {
"project_id": null,
"team_id": null,
"org_id": null
}
}
}