ユーザーの所属(経歴)

GET/users/:id/organization_members

指定ユーザーの公開されている所属(職歴・学歴)を返します。

認証不要

パスパラメータ

idstring必須

ユーザー ID または slug。

レスポンス

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