Skip to content

Get an organization member

GET
/api/organizations/{organizationId}/members/{id}

Retrieves a single membership record within the organization by its id, including the member's role, inviter, and join date.

Authorizations

ApiToken

Long-lived API token created via POST /api/api-tokens (returned once in plaintext).

Type
API Key (header: X-API-TOKEN)
or
JWT

JWT access token obtained via POST /api/auth/login. Send as: Authorization: Bearer .

Type
HTTP (bearer)

Parameters

Path Parameters

organizationId*

Organization identifier

Type
string
Required
id*

member identifier

Type
string
Required

Responses

member resource

JSON
{
  
"@context": "string",
  
"@id": "string",
  
"@type": "string",
  
"id": "5c2e1f9a-3b7d-4c6e-8a1f-0b2d3e4f5a6b",
  
"user": {
  
  
"@context": "string",
  
  
"@id": "string",
  
  
"@type": "string",
  
  
"id": "9f1b6c2e-1e4a-4c3a-9c8b-1d2e3f4a5b6c",
  
  
"email": "jane.doe@example.com",
  
  
"firstName": "Jane",
  
  
"lastName": "Doe"
  
},
  
"organization": "https://example.com/",
  
"role": "MANAGER",
  
"invitedBy": {
  
  
"@context": "string",
  
  
"@id": "string",
  
  
"@type": "string",
  
  
"id": "9f1b6c2e-1e4a-4c3a-9c8b-1d2e3f4a5b6c",
  
  
"email": "jane.doe@example.com",
  
  
"firstName": "Jane",
  
  
"lastName": "Doe"
  
},
  
"joinedAt": "2025-06-15T10:30:00+00:00"
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI