v2

latestOpenAPI 3.0.3raw.githubusercontent.com2025-01-245593419.2 KB
Clients

Get client's details

OAuth scope: client.read


Get information about a client that constitutes the addressee of client invoices for a particular organization by client id. See further details below.


Price plans: this endpoint is available for all Qonto price plans


The response contains the attributes of the client entered in the request, along with additional fields that are computed by Qonto, including the associated client id.

get/v2/clients/{id}

Path parameters

idstring uuid required

ID of the client

Headers

X-Qonto-Staging-Tokenstring

Required only for Sandbox API requests; to get one, please submit the following form: https://getqonto.atlassian.net/servicedesk/customer/portal/5/group/47/create/143.

Response

Retrieve details about a client

Example response

{
  "client": {
    "email": "john.doe@qonto.eu",
    "billing_address": {
      "street_address": "123 Main Street",
      "city": "Paris",
      "zip_code": "75009",
      "country_code": "fr"
    },
    "delivery_address": {
      "street_address": "123 Main Street",
      "city": "Paris",
      "zip_code": "75009",
      "country_code": "fr"
    },
    "locale": "fr"
  }
}