Clients
clients create and clients update take a JSON document with --body, because the fields depend on whether the client is a company or an individual.
Products
Try it
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Your client address book and product catalog
| Command | What it does | OAuth scope |
|---|---|---|
qonto clients create | Create a client | client.write |
qonto clients delete <id> | Delete a client | client.write |
qonto clients get <id> | Retrieve a client | client.read |
qonto clients list | List clients | client.read |
qonto clients update <id> | Update a client | client.write |
clients create and clients update take a JSON document with --body, because the fields depend on whether the client is a company or an individual.
| Command | What it does | OAuth scope |
|---|---|---|
qonto products create | Create a product | product.write |
qonto products delete <id> | Delete a product | product.write |
qonto products get <id> | Retrieve a product | product.read |
qonto products list | List products | product.read |
# Find a client by name
qonto clients list --all --jq '.clients[] | select((.name // "") | test("acme"; "i")) | {id, name}'
# Create a client from a JSON document
qonto clients create --body @client.json
Was this page helpful?