List organisations
List all organisations for the current user
GET
/api/v1/{app_id}/organisations- API
- Auth
- OpenAPI
- auth-api
- Updated
- Apr 26, 2026
auth-api:GET:/api/v1/{app_id}/organisations
List all organisations for the current user
API ownership
- API family: Auth API
- Best for: Customer identity, session, token, cart, and wishlist flows.
- Do not use from: Merchant admin data syncs or public catalog rendering.
- Guide route: /apis/auth/latest
The OpenAPI contract defines the method, path, parameters, request body, and responses for this operation.
Operation
- Method:
GET - Path:
/api/v1/\{app_id\}/organisations - Summary: List organisations
- Description: List all organisations for the current user
- OpenAPI contract: auth-api
- Operation ID: Not documented in the OpenAPI contract.
Operation key uses API family, method, and path because this OpenAPI contract does not publish an operation ID.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
| app_id | path | Yes | string | UUID of the app |
| page | query | No | integer | Page number for pagination. If not provided, all organisations are returned. |
| per_page | query | No | integer | Number of items per page. Max 20. If not provided, all organisations are returned. |
| search | query | No | string | Search query for organisation name and number |
Request body
Not documented in the OpenAPI contract.
Responses
| Status | Description | Content |
|---|---|---|
| 200 | OK | application/json (object) |
| 400 | Invalid request | application/json (object) |
| 500 | Internal server error | application/json (object) |
200 - object
List Organisations
| Property | Type | Required | Details |
|---|---|---|---|
companies | object[] | No | - |
page | integer | No | - |
total | integer | No | - |
total_pages | integer | No | - |
Organisation With User Relation
| Property | Type | Required | Details |
|---|---|---|---|
app_id | string | No | - |
attributes | object[] | No | - |
billing_address | object[] | No | - |
comment | string | No | - |
contact_name | string | No | - |
created_at | string | No | - |
credit_check | boolean | No | - |
custom_fields | object | No | - |
customer_groups | object[] | No | - |
email | string | No | - |
external_ref | string | No | - |
files | object[] | No | - |
id | string | No | - |
invoice_email | string | No | - |
level | string | No | Can be null when a child organisation is without this user relation |
name | string | No | - |
organisation_number | string | No | - |
parent_id | string | No | - |
phone | string | No | - |
role | string | No | Can be null when a child organisation is without this user relation |
role_name | string | No | Can be null when a child organisation is without this user relation |
shipping_address | object[] | No | - |
status | string | No | - |
store_groups | object[] | No | - |
tags | object[] | No | - |
tax_id_vat_number | string | No | - |
updated_at | string | No | - |
Attribute
| Property | Type | Required | Details |
|---|---|---|---|
description | string | No | - |
id | string | No | - |
key | string | No | - |
name | string | No | - |
template_key | string | No | - |
translations | object | No | - |
values | object | No | - |
Company Address
| Property | Type | Required | Details |
|---|---|---|---|
city | string | No | - |
co_address | string | No | - |
company_id | string | No | - |
company_name | string | No | - |
country | string | No | - |
created_at | string | No | - |
house_number | string | No | - |
id | string | No | - |
is_default | boolean | No | - |
name | string | No | - |
phone | string | No | - |
postal_code | string | No | - |
shipping_type | string | No | - |
state_province | string | No | - |
street_address | string | No | - |
updated_at | string | No | - |
Customer Group Ref
| Property | Type | Required | Details |
|---|---|---|---|
id | string | No | - |
name | string | No | - |
slug | string | No | - |
File
| Property | Type | Required | Details |
|---|---|---|---|
app_id | string | No | - |
content_type | string | No | - |
created_at | string | No | - |
custom_fields | object | No | - |
filename | string | No | - |
id | string | No | - |
updated_at | string | No | - |
url | string | No | - |
Store Group
| Property | Type | Required | Details |
|---|---|---|---|
country_of_sale | string | No | - |
created_at | string | No | - |
description | string | No | - |
id | string | No | - |
name | string | No | - |
slug | string | No | - |
store_type | string | No | - |
updated_at | string | No | - |
Tag
| Property | Type | Required | Details |
|---|---|---|---|
id | string | No | - |
key | string | No | - |
name | string | No | - |
{
"companies": [
{
"app_id": "string",
"attributes": [
{
"description": null,
"id": null,
"key": null,
"name": null,
"template_key": null,
"translations": null,
"values": null
}
],
"billing_address": [
{
"city": null,
"co_address": null,
"company_id": null,
"company_name": null,
"country": null,
"created_at": null,
"house_number": null,
"id": null,
"is_default": null,
"name": null,
"phone": null,
"postal_code": null,
"shipping_type": null,
"state_province": null,
"street_address": null,
"updated_at": null
}
],
"comment": "string",
"contact_name": "string",
"created_at": "string",
"credit_check": false,
"custom_fields": {},
"customer_groups": [
{
"id": null,
"name": null,
"slug": null
}
],
"email": "string",
"external_ref": "string",
"files": [
{
"app_id": null,
"content_type": null,
"created_at": null,
"custom_fields": null,
"filename": null,
"id": null,
"updated_at": null,
"url": null
}
],
"id": "string",
"invoice_email": "string",
"level": "string",
"name": "string",
"organisation_number": "string",
"parent_id": "string",
"phone": "string",
"role": "string",
"role_name": "string",
"shipping_address": [
{
"city": null,
"co_address": null,
"company_id": null,
"company_name": null,
"country": null,
"created_at": null,
"house_number": null,
"id": null,
"is_default": null,
"name": null,
"phone": null,
"postal_code": null,
"shipping_type": null,
"state_province": null,
"street_address": null,
"updated_at": null
}
],
"status": "string",
"store_groups": [
{
"country_of_sale": null,
"created_at": null,
"description": null,
"id": null,
"name": null,
"slug": null,
"store_type": null,
"updated_at": null
}
],
"tags": [
{
"id": null,
"key": null,
"name": null
}
],
"tax_id_vat_number": "string",
"updated_at": "string"
}
],
"page": 0,
"total": 0,
"total_pages": 0
}400 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
details | string[] | No | - |
message | string | No | - |
success | boolean | No | - |
Generated example (synthetic):
{
"details": [
"string"
],
"message": "string",
"success": false
}500 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
details | string[] | No | - |
message | string | No | - |
success | boolean | No | - |
Generated example (synthetic):
{
"details": [
"string"
],
"message": "string",
"success": false
}Contract identity
Use these fields to confirm you are implementing the intended endpoint contract.
- API family: Auth API
- Method:
GET - Path:
/api/v1/\{app_id\}/organisations - Operation ID: Not documented in the OpenAPI contract.
- OpenAPI tag: Organisations
- OpenAPI summary: List organisations