GET
/
members
/
{id}
curl --request GET \
  --url https://schoolmaker.co/api/v1/members/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "email": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "last_seen_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_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

id
string
required

Response

200 - application/json
Member details
id
string

Unique identifier of the member

email
string

Email address of the member

first_name
string

First name of the member

last_name
string

Last name of the member

last_seen_at
string

Timestamp when the member was last seen

created_at
string

Timestamp when the member was created

updated_at
string

Timestamp when the member was last updated