GET
/
v1
/
me
/
community
/
members
/
{userIdOrSlug}
curl --request GET \
  --url https://metafy.gg/irk/api/v1/me/community/members/{userIdOrSlug} \
  --header 'Authorization: Bearer <token>'
{
  "member": {
    "id": "<string>",
    "role": "admin",
    "joined_at": "2023-11-07T05:31:56Z",
    "user_id": "<string>",
    "community_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

This API uses OAuth 2 with the authorization code flow.

You must pass in your client_id to the Authorization header using Bearer.

Path Parameters

userIdOrSlug
string
required

ID or Slug of the user to check

Response

200
application/json
User is a member of the community
member
object