API Endpoint
{{apiUrl}}/api/v1/category/labels?startAt={{startAt}}&limit={{limit}}
Headers
To authenticate the API request, you need to provide the Vansah Connect Token that is generated from the Jira workspace's Vansah configuration page.
Authorization | {{vansahConnectToken}}
|
Request Query Parameter
startAt | {{startAt}}
|
limit | {{limit}}
|
Response Body
success
:
A boolean indicating whether the request was successful.message
:
A message providing additional details about the response.pagination
:
Provides information about the pagination of the data.total
: Total number of labels available.startAt
: The starting point for the data returned.limit
: The number of labels that can be retrieved per request.
data
:
A list of Test Case labels returned from the API. Each label has aname
field.
Example Response Body
{
"success": true,
"message": "Labels returned successfully",
"pagination": {
"total": 15,
"startAt": 0,
"limit": 1000
},
"data": [
{
"name": "Functional"
},
{
"name": "Integration"
},
{
"name": "Non-Functional"
},
{
"name": "Smoke"
},
{
"name": "backend"
},
{
"name": "frontend"
}
]
}