Own managed organizations

GET/users/me/organizations

List organizations where the authenticated user is an ADMIN.

AuthLogin required

Response

FieldTypeDescription
organizationsOrganization[]Array of organizations.
Request
curl https://api.4s.link/users/me/organizations \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"organizations": [
{
"id": "o1a2b3c4-...",
"name": "Example Inc.",
"type": "COMPANY",
"logoUrl": "https://.../logo.png",
"role": "ADMIN"
}
]
}