POST
/
publisher.v1
/
member-base
/
get
Get
curl --request POST \
  --url http://localhost/publisher.v1/member-base/get \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "deleted_at": "2023-11-07T05:31:56Z"
}
Retrieve a single memberbase by its unique ID. Returns the full memberbase record including its name and timestamps. Use this endpoint to verify a memberbase exists before performing operations against it, or to fetch its current state for display in administrative interfaces.

Body

application/json
id
string
required

Response

Successful response

id
string
required
name
string
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
deleted_at
string<date-time>