action atlassian_get_all_labels { label: "Get all labels" description: "Returns a [paginated](#pagination) list of labels." provider: atlassian method: GET path: "/rest/api/3/label" encoding: json input: { type: "object" properties: { maxResults: { type: "integer" format: "int32" } startAt: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "object" description: "A page of items." properties: { isLast: { type: "boolean" description: "Whether this is the last page." } maxResults: { type: "integer" format: "int32" description: "The maximum number of items that could be returned." } nextPage: { type: "string" format: "uri" description: "If there is another page of results, the URL of the next page." } self: { type: "string" format: "uri" description: "The URL of the page." } startAt: { type: "integer" format: "int64" description: "The index of the first item returned." } total: { type: "integer" format: "int64" description: "The number of items returned." } values: { type: "array" description: "The list of items." items: { type: "string" } } } additionalProperties: false } }