curl --request GET \
--url https://partner.peaka.studio/api/v1/organizations \
--header 'Authorization: Bearer <token>'
[
{
"id": "d0d3c83f-29ed-4f2e-899d-1bfa00eb3cef",
"name": "ABC Organization",
"owner": "1673d60f-a0ea-41f4-9420-c91dbc2864f5",
"createdAt": "2025-03-25T12:28:48.737355Z",
"iconFileId": null,
"description": "Default Organization"
}
]
Retrieves all the organizations accessible by the authenticated user.
An Organization is the highest-level resource that can contain multiple Workspaces.
curl --request GET \
--url https://partner.peaka.studio/api/v1/organizations \
--header 'Authorization: Bearer <token>'
[
{
"id": "d0d3c83f-29ed-4f2e-899d-1bfa00eb3cef",
"name": "ABC Organization",
"owner": "1673d60f-a0ea-41f4-9420-c91dbc2864f5",
"createdAt": "2025-03-25T12:28:48.737355Z",
"iconFileId": null,
"description": "Default Organization"
}
]
Use the Authorization header with the value 'Bearer <apiKey>' to authenticate. Partner API Keys have full access; Project API Keys are limited to their project scope. Learn more: https://docs.peaka.com/api-reference/authentication
List of Organizations
The response is of type object
.