自分が管理する組織

GET/users/me/organizations

認証中ユーザーが ADMIN として所属する組織の一覧を返します。

認証要ログイン

レスポンス

フィールド説明
organizationsOrganization[]組織の配列。
リクエスト
curl https://api.4s.link/users/me/organizations \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"organizations": [
{
"id": "o1a2b3c4-...",
"name": "Example Inc.",
"type": "COMPANY",
"logoUrl": "https://.../logo.png",
"role": "ADMIN"
}
]
}