Skip to main content
GET
JavaScript

Authorizations

Authorization
string
header
required

A company API key, company scoped JWT, app API key, or user OAuth token. You must prepend your key/token with the word 'Bearer', which will look like Bearer ***************************

Headers

Api-Version-Date
string

Pins the request to a dated API version.

Example:

"2026-07-23"

Path Parameters

id
string
required

Member ID (mber_ tag).

Response

member retrieved

access_level
enum<string>
required

What the member can reach on the account: customer for paying members, admin for team members, no_access once every grant has lapsed.

Available options:
no_access,
admin,
customer
Example:

"no_access"

account_id
string
required

The account this member belongs to, prefixed biz_.

created_at
string
required

When the member record was created, as an ISO 8601 timestamp.

id
string
required

Member ID, prefixed mber_.

joined_at
string
required

When the member first joined the account, as an ISO 8601 timestamp.

last_accessed_at
string | null
required

When the member last opened the account's content, as an ISO 8601 timestamp. null if they never have.

status
enum<string>
required

joined while the member is part of the account, left after they leave.

Available options:
joined,
left
Example:

"joined"

user
object | null
required

The user behind this member. null when the buyer is another business rather than a person.