GET
/
v2
/
memberships
curl --request GET \
  --url https://thirdparty.qonto.com/v2/memberships \
  --header 'Authorization: Bearer <token>'
{
"memberships": [
{
"id": "c9f9f051-7558-451c-b310-f4b8521424aa",
"first_name": "Quinn Jast",
"last_name": "Miss Stan Altenwerth",
"role": "owner",
"residence_country": "FR",
"birthdate": "1987-07-12",
"nationality": "FR",
"ubo": true,
"birth_country": "IT"
}
],
"meta": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1,
"per_page": 100
}
}

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.

per_page
string

Number of memberships per page (cf. Pagination).

Response

200
application/json

Returns the list of memberships for the authenticated organization.

The response is of type object.