List organizations (paginated, newest first).
GET
Secret API key operationId: list/v1/organizations Authorization
Server-to-server. Send a secret key as a Bearer token plus the x-application-id header.
Query parameters
searchstring optionalCase-insensitive match on name or slug.
limitinteger<int64> optionalPage size (default 25, max 100).
offsetinteger<int64> optionalRow offset (default 0).
Responses
200 Organizations
{
"data": {
"limit": 0,
"offset": 0,
"organizations": [
{
"created_at": null,
"id": null,
"member_count": null,
"name": null,
"slug": null
}
],
"total": 0
},
"error": {
"code": "string",
"message": "string"
},
"meta": {
"timestamp": "string"
},
"success": false
}Request
curl -X GET "http://localhost:8080/v1/organizations" \Try it
live requestGET
http://localhost:8080/v1/organizations