GET
/
profiles
/
members
/
{member_id}
curl --request GET \
  --url https://api.live.paisr.tech/{version}/profiles/members/{member_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "tem_123456",
    "email": "jsmith@example.com",
    "role": "admin",
    "status": "accepted",
    "created_at": "2023-11-07T05:31:56Z",
    "accepted_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

member_id
string
required

The Member ID.

Response

200
application/json
Successfully retrieved the member details.
success
boolean
Example:

true

data
object