組織詳細

GET/organizations/:id

指定組織の詳細を取得します。

認証不要

パスパラメータ

idstring必須

組織 ID

レスポンス

フィールド説明
id / name / slug / typestring基本情報
websiteUrl / logoUrlstring | nullURL / ロゴ
createdByUser作成者
memberCountnumberメンバー数
リクエスト
curl https://api.4s.link/organizations/ID \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"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"
}