POST
/
publisher.v1
/
member
/
get
Get
curl --request POST \
  --url http://localhost/publisher.v1/member/get \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>"
}
'
{
  "id": "<string>",
  "member_base_id": "<string>",
  "ref": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}
Retrieve a single member by their reference within a memberbase. Returns the full member record including their ref and any stored attributes. The member is identified by the combination of member_base_id and ref. This mirrors the identity model used during upsert — the ref is the external identifier your system controls.

Body

application/json
id
string
required

Response

Successful response

id
string
required
member_base_id
string
required
ref
string
required
created_at
string<date-time>
required
updated_at
string<date-time>
required