> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qonto.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Accounts and organizations

> Organization, business accounts, memberships, teams, labels, and plan

Read the organization you are signed in to, its business accounts, the people in it and how they are organized, and its Qonto plan. If your role allows it, you can also invite members and create teams.

## Organization and business accounts

| Command                                     | What it does                                                                                                                                                                                      | OAuth scope         |
| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- |
| `qonto bank-accounts get <id>`              | [Get a business account](/api-reference/business-api/accounts-organizations/business-accounts/show)                                                                                               | `organization.read` |
| `qonto bank-accounts iban-certificate <id>` | [Download the IBAN certificate](/api-reference/business-api/accounts-organizations/business-accounts/download-iban-certificate)                                                                   | `organization.read` |
| `qonto bank-accounts list`                  | [List business accounts](/api-reference/business-api/accounts-organizations/business-accounts/list)                                                                                               | `organization.read` |
| `qonto organization get`                    | [Retrieve the authenticated organization and list bank accounts](/api-reference/business-api/accounts-organizations/organizations/retrieve-the-authenticated-organization-and-list-bank-accounts) | `organization.read` |
| `qonto subscription get`                    | [Retrieve the organization's current subscription plan](/api-reference/business-api/accounts-organizations/subscriptions/get-subscription)                                                        | `subscription.read` |

`qonto organization get` returns the organization together with all its business accounts. Use it to find the account ids and IBANs other commands ask for.

## Members, teams, and labels

| Command                    | What it does                                                                                                                                  | OAuth scope         |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- |
| `qonto labels get <id>`    | [Retrieve a label](/api-reference/business-api/accounts-organizations/labels/retrieve-a-label)                                                | `organization.read` |
| `qonto labels list`        | [List labels](/api-reference/business-api/accounts-organizations/labels/list-labels)                                                          | `organization.read` |
| `qonto memberships invite` | [Create a membership](/api-reference/business-api/accounts-organizations/memberships/create-a-membership)                                     | `membership.write`  |
| `qonto memberships list`   | [List memberships](/api-reference/business-api/accounts-organizations/memberships/list-memberships)                                           | `organization.read` |
| `qonto memberships me`     | [Retrieve the authenticated membership](/api-reference/business-api/accounts-organizations/memberships/retrieve-the-authenticated-membership) | `membership.read`   |
| `qonto teams create`       | [Create a team](/api-reference/business-api/accounts-organizations/teams/create-a-team)                                                       | `team.write`        |
| `qonto teams list`         | [List teams](/api-reference/business-api/accounts-organizations/teams/list-teams)                                                             | `team.read`         |

`qonto memberships invite` invites an **employee** or a **reporting** member (`--role employee` or `--role reporting`). The invitation is sent by email.

**Try it**

```bash theme={null}
# Your organization's name and slug
qonto organization get --fields legal_name,slug

# Your organization's accounts, with their balances
qonto bank-accounts list --fields name,iban,balance,currency

# The IBAN certificate of an account, as a PDF
qonto bank-accounts iban-certificate <account-id> -O iban-certificate.pdf

# Who you are signed in as, and your role
qonto memberships me

# Invite an employee into a team
qonto memberships invite --email jane@example.com --first-name Jane --last-name Doe \
  --role employee --team-id <team-id>
```
