Organization detail

GET/organizations/:id

Retrieve an organization's detail.

AuthNot required

Path parameters

idstringrequired

Organization ID

Response

FieldTypeDescription
id / name / slug / typestringBasics
websiteUrl / logoUrlstring | nullURL / logo
createdByUserCreator
memberCountnumberMember 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"
}