Skip to main content
GET
/
api
/
public
/
v1
/
participants
/
{participant_id}
Get Participant
curl --request GET \
  --url https://api.userintuition.ai/api/public/v1/participants/{participant_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "study_id": "<string>",
  "email": "<string>",
  "panel_status": "<string>",
  "reward_sent": true,
  "reward_sent_at": "2023-11-07T05:31:56Z",
  "sent_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Authenticate with an API key (prefixed ui_sk_) or a JWT token from the dashboard.

Path Parameters

participant_id
string
required

Response

Successful Response

id
string
required
study_id
string | null

The study this participant belongs to

email
string | null
panel_status
string | null

Panel lifecycle status, if a panel participant

reward_sent
boolean | null
reward_sent_at
string<date-time> | null
sent_at
string<date-time> | null
created_at
string<date-time> | null