Own community membership

GET/communities/:id/my-membership

Return the authenticated user's membership in the community, or null if not a member.

AuthLogin required

Path parameters

idstringrequired

Community ID or slug.

Request
curl https://api.4s.link/communities/ID/my-membership \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"member": {
"id": "cm1a2b3c-...",
"role": "MEMBER",
"status": "APPROVED"
}
}