自分の所属(経歴)

GET/users/me/organization_members

認証中ユーザーの所属(職歴・学歴)の一覧を返します。プロフィールの経歴セクションに対応します。

認証要ログイン

レスポンス

フィールド説明
organizationMembersOrganizationMember[]所属の配列(organization を含む)
リクエスト
curl https://api.4s.link/users/me/organization_members \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"organizationMembers": [
{
"id": "om1a2b3c-...",
"title": "Software Engineer",
"startDate": "2024-04-01",
"endDate": null,
"current": true,
"organization": { "id": "o1a2b3c4-...", "name": "Example Inc.", "type": "COMPANY" }
}
]
}