GET
/
v2
/
organizations
/
{id}
Show organization
curl --request GET \
  --url https://thirdparty.qonto.com/v2/organizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "organization": {
    "slug": "super-organization-9798",
    "legal_name": null,
    "bank_accounts": [
      {
        "slug": "super-bankaccount-7150",
        "iban": "FR7616798000010000005663951",
        "bic": "TRZOFR21XXX",
        "currency": "EUR",
        "balance": 100,
        "balance_cents": 10000,
        "authorized_balance": 100,
        "authorized_balance_cents": 10000,
        "updated_at": "2021-03-23T14:00:46.667Z",
        "status": "active"
      }
    ]
  }
}

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.

Path Parameters

id
string
required
Example:

"super-organization-9798"

Response

200
application/json

DEPRECATED. Please use Get organization and its bank_accounts instead.

The response is of type object.