Own organization memberships

GET/users/me/organization_members

List the authenticated user's organization memberships (work / education history) shown in the profile.

AuthLogin required

Response

FieldTypeDescription
organizationMembersOrganizationMember[]Array of memberships (each includes organization)
Request
curl https://api.4s.link/users/me/organization_members \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"organizationMembers": [
{
"id": "om1a2b3c-...",
"title": "Software Engineer",
"startDate": "2024-04-01",
"endDate": null,
"current": true,
"organization": { "id": "o1a2b3c4-...", "name": "Example Inc.", "type": "COMPANY" }
}
]
}