curl --request GET \
--url https://thirdparty.qonto.com/v2/clients/{id} \
--header 'Authorization: Bearer <token>'{
"client": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "John Doe",
"first_name": "John",
"last_name": "Doe",
"phone_number": "+33123456789",
"phone": {
"country_code": "+33",
"number": "123456789"
},
"kind": "company",
"type": "company",
"email": "[email protected]",
"extra_emails": [
"[email protected]",
"[email protected]"
],
"currency": "EUR",
"e_invoicing_address": "987654321",
"vat_number": "<string>",
"tax_identification_number": "<string>",
"address": "<string>",
"city": "<string>",
"zip_code": "<string>",
"province_code": "<string>",
"country_code": "<string>",
"billing_address": {
"street_address": "123 Main Street",
"city": "Paris",
"zip_code": "75009",
"province_code": "<string>",
"country_code": "fr"
},
"delivery_address": {
"street_address": "123 Main Street",
"city": "Paris",
"zip_code": "75009",
"province_code": "<string>",
"country_code": "fr"
},
"recipient_code": "<string>",
"created_at": "<string>",
"locale": "fr"
}
}OAuth scope: client.read
Retrieves the client identified by the id path parameter.
Price plans: this endpoint is available for all Qonto price plans
curl --request GET \
--url https://thirdparty.qonto.com/v2/clients/{id} \
--header 'Authorization: Bearer <token>'{
"client": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "John Doe",
"first_name": "John",
"last_name": "Doe",
"phone_number": "+33123456789",
"phone": {
"country_code": "+33",
"number": "123456789"
},
"kind": "company",
"type": "company",
"email": "[email protected]",
"extra_emails": [
"[email protected]",
"[email protected]"
],
"currency": "EUR",
"e_invoicing_address": "987654321",
"vat_number": "<string>",
"tax_identification_number": "<string>",
"address": "<string>",
"city": "<string>",
"zip_code": "<string>",
"province_code": "<string>",
"country_code": "<string>",
"billing_address": {
"street_address": "123 Main Street",
"city": "Paris",
"zip_code": "75009",
"province_code": "<string>",
"country_code": "fr"
},
"delivery_address": {
"street_address": "123 Main Street",
"city": "Paris",
"zip_code": "75009",
"province_code": "<string>",
"country_code": "fr"
},
"recipient_code": "<string>",
"created_at": "<string>",
"locale": "fr"
}
}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.
Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.
ID of the client
Returns the client identified by the id path parameter.
Show child attributes
Name of the client that needs to pay the client invoice.
"John Doe"
First name of the client that needs to pay the invoice.
"John"
Last name of the client that needs to pay the invoice.
"Doe"
Phone number of the client that needs to pay the invoice. Deprecated, use phone instead.
"+33123456789"
Describes the client type. individual represents a physical person (a consumer) whereas company or freelancer represent a legal entity. Usually a freelancer is a legal entity with the name of a person.
company, individual, freelancer Describes the client type. individual represents a physical person (a consumer) whereas company or freelancer represent a legal entity. Usually a freelancer is a legal entity with the name of a person.
company, individual, freelancer E-mail address of the client that needs to pay the invoice, which is displayed in the invoice.
Additional email addresses for the client. Store additional emails that won't appear in the document but will be used as recipients when sending the document via email.
100250Client's currency.
"EUR"
Specifically for French organizations. A unique address in one of the formats:
Note the address should also exist in the Annuaire to be accepted.
"987654321"
Value Added Tax number of the client (a legal entity) that needs to pay the invoice.
Tax Identification Number of the client (a physical person) that needs to pay the invoice. It corresponds to the SIREN/SIRET for French companies.
Address of the client that needs to pay the invoice.
City of the client that needs to pay the invoice.
Zip code of the client that needs to pay the invoice.
Only for italian organizations. Represents the province code of the client.
Country code of the client that needs to pay the invoice.
Billing address of the client that needs to pay the invoice. Stores the same data as the root-level fields address fields (address, city, zip_code, province_code, country_code).
Show child attributes
represent the street address section of the billing address of the client. (eg street, number, floor, door, etc)
250"123 Main Street"
City on the billing address of the client that needs to pay the invoice
50"Paris"
Zip code on the billing address of the client that needs to pay the invoice
20"75009"
Province code of the client's billing address
2Country code on the billing address of the client that needs to pay the invoice
2"fr"
Delivery address of the client that needs to pay the invoice. Stores the same data as the root-level fields address fields (address, city, zip_code, province_code, country_code).
Show child attributes
represent the street address section of the delivery address of the client. (eg street, number, floor, door, etc)
250"123 Main Street"
City on the delivery address of the client that needs to pay the invoice
50"Paris"
Zip code on the delivery address of the client that needs to pay the invoice
20"75009"
Province code of the client's delivery address that needs to pay the invoice
2Country code on the delivery address of the client that needs to pay the invoice
2"fr"
Only for italian clients. Represents the client’s recipient code for receiving an the e-invoice in his SdI portal.
Date the client was created. Note that this is a machine date.
Language of the documents created on Qonto (invoices, quotes, credit notes) for this particular client. Note, although we accept locales of format fr-FR we ignore the region part, treating this as fr.
"fr"
Was this page helpful?