Organization detail (for managers)

GET/manage/organizations/:id

Retrieve an organization for management. Only its admins can access it.

AuthLogin required

Path parameters

idstringrequired

Organization ID.

Notes

When accessed with an OAuth access token, `email` fields are recursively removed from the response JSON (they are retained for session-authenticated dashboard access).

Request
curl https://api.4s.link/manage/organizations/ID \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"id": "o1a2b3c4-...",
"slug": "example-inc",
"name": "Example Inc.",
"type": "COMPANY",
"description": "...",
"logoUrl": "https://.../logo.png",
"logoDarkUrl": null,
"websiteUrl": "https://example.com"
}