Organization detail
GET
/organizations/:idRetrieve an organization's detail.
| Auth | Not required |
|---|
Path parameters
idstringrequiredOrganization ID
Response
| Field | Type | Description |
|---|---|---|
id / name / slug / type | string | Basics |
websiteUrl / logoUrl | string | null | URL / logo |
createdBy | User | Creator |
memberCount | number | Member count |
Request
curl https://api.4s.link/organizations/ID \-H "Authorization: Bearer 4s_at_..."
Example response
{"id": "o1-...","name": "Acme Inc.","description": "...","websiteUrl": "https://acme.example.com","type": "COMPANY","logoUrl": "https://.../logo.png","slug": "acme","memberCount": 50,"createdBy": { "id": "a1b2c3d4-...", "slug": "taro" },"createdAt": "2026-01-01T00:00:00.000Z","updatedAt": "2026-07-01T00:00:00.000Z"}