v1

latestOpenAPI 3.1.0Any Source Available License 1.02026-07-1736102200.0 KB
Members

Get member

Fetches detailed information about a single member within a space. The endpoint returns the member’s identifier, name, icon, identity, global name, status and role. The member_id path parameter can be provided as either the member's ID (starting with _participant) or the member's identity. This is useful for user profile pages, permission management, and displaying member-specific information in collaborative environments.

get/v1/spaces/{space_id}/members/{member_id}

Path parameters

space_idstring required

The ID of the space to get the member from; must be retrieved from ListSpaces endpoint

member_idstring required

Member ID or Identity; must be retrieved from ListMembers endpoint or obtained from response context

Headers

Anytype-Versionstring required

The version of the API to use

Response

The member details

Example response

{
  "member": {
    "global_name": "john.any",
    "icon": {
      "emoji": "📄"
    },
    "id": "_participant_bafyreigyfkt6rbv24sbv5aq2hko1bhmv5xxlf22b4bypdu6j7hnphm3psq_23me69r569oi1_AAjEaEwPF4nkEh9AWkqEnzcQ8HziBB4ETjiTpvRCQvWnSMDZ",
    "identity": "AAjEaEwPF4nkEh7AWkqEnzcQ8HziGB4ETjiTpvRCQvWnSMDZ",
    "name": "John Doe",
    "object": "member",
    "role": "owner",
    "status": "active"
  }
}