Creates a new participant.
Note — Retake: To allow a participant to retake an unsuccessfully completed questionnaire, provide the existing participant's participant_uuid. This is only supported for participants who did not successfully complete the questionnaire.
Security
authorization
One of:
UUID of the project/questionnaire
Example:"fd9690b0-9050-4acd-ad74-7f906c07fe93"
- US Production serverhttps://api.us.clearspeed.com/questionnaire/v1/participant
- UK Production serverhttps://api.uk.clearspeed.com/questionnaire/v1/participant
curl -i -X POST \
https://api.us.clearspeed.com/questionnaire/v1/participant \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"project_uuid": "fd9690b0-9050-4acd-ad74-7f906c07fe93",
"phone_number1": "+916263877039",
"phone_number2": "",
"interview_ref_num": "7858934895810",
"external_ref_id": "12345-46b5-464d-a8e4-afecc",
"email": "participant@gmail.com",
"language": "English"
}'Participant created, or — on a retake — the participant named by participant_uuid. Both modes return the same body.
Link to the participant guide
Example:"https://guide.example.com?id=01977df0-57c1-7dcf-8916-df741aa66691"
Response
{ "project_uuid": "fd9690b0-9050-4acd-ad74-7f906c07fe93", "phone_number1": "+916263877039", "phone_number2": "", "interview_ref_num": "7858934895810", "external_ref_id": "12345-46b5-464d-a8e4-afecc", "participant_uuid": "01977df0-57c1-7dcf-8916-df741aa66691", "email": "participant@gmail.com", "language": "English", "particpant_guide_link": "https://guide.example.com?id=01977df0-57c1-7dcf-8916-df741aa66691", "is_participant_allowed": true, "outcome": null, "outcome_ts": null }