provider Labels GET /rest/api/3/label
@utdk/jira /rest/api/3/label
Get all labels
Returns a [paginated](#pagination) list of labels.
startAt query
The index of the first item to return in a page of results (page offset).
integer
maxResults query
The maximum number of items to return per page.
integer

Try it

Authentication
Configure credentials for The Jira Cloud platform REST API
getalllabels
GET/rest/api/3/label
Returns a [paginated](#pagination) list of labels.

The index of the first item to return in a page of results (page offset).

The maximum number of items to return per page.

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import jira from '@utdk/jira';

await jira.getalllabels({
  "startAt": 0,
  "maxResults": 1000
})