Get Tags
This endpoint fetch list of all the tag based on given query parameters.
GET
/api/v1.0/labels
curl \
--request GET 'https://openapi.niftypm.com/api/v1.0/labels' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"hasMore": false,
"items": [
{
"id": "string",
"name": "string",
"color": "string",
"type": "string",
"created_by": "string",
"team": "string",
"default": "string"
}
]
}