Skip to main content
View as Markdown

List organizations the caller belongs to

GET /api/v1/organizations

Example request

curl https://api.mobilenexthq.com/api/v1/organizations \
-X GET \
-H 'Authorization: Bearer mob_...'

Responses

200 — Organizations the caller is a member of, with their role in each

{
"organizations": [
{
"organizationId": 0,
"organizationName": "string",
"organizationType": "starter",
"role": "admin",
"createdAt": "2026-01-01T00:00:00Z"
}
]
}

401 — Missing or invalid Bearer token

{
"error": {
"code": "string",
"message": "string"
}
}

403 — Caller lacks permission for this action (e.g. not an admin)

{
"error": {
"code": "string",
"message": "string"
}
}

500 — Unexpected server error

{
"error": {
"code": "string",
"message": "string"
}
}