Skip to main content
GET
/
v2
/
labels
List labels
curl --request GET \
  --url https://thirdparty.qonto.com/v2/labels \
  --header 'Authorization: Bearer <token>'
{
  "labels": [
    {
      "id": "<string>",
      "name": "<string>",
      "parent_id": "<unknown>"
    }
  ],
  "meta": {
    "current_page": 123,
    "next_page": "<unknown>",
    "prev_page": "<unknown>",
    "total_pages": 123,
    "total_count": 123,
    "per_page": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authorization header: Bearer <token>, where <token> is the access token received from the authorization server at the end of the OAuth 2.0 flow.

Headers

X-Qonto-Staging-Token
string

Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.

Query Parameters

page
string

Returned page (cf. Pagination).

per_page
string

Number of labels per page (cf. Pagination).

Response

Returns the list of labels for the authenticated organization.

labels
object[]
meta
object