PUT
/
v1
/
team-respondents
/
batch-invite
Invite multiple past participants
curl --request PUT \
  --url https://api-staging.respondent.io/v1/team-respondents/batch-invite \
  --header 'Content-Type: application/json' \
  --data '{
  "projectId": "<string>",
  "participants": [
    {
      "profileId": "<string>",
      "skipScreenerQuestions": true
    }
  ],
  "message": "<string>"
}'
{
  "invitations": [
    {
      "id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "profileId": "<string>",
      "userId": "<string>",
      "organizationId": "<string>",
      "teamId": "<string>",
      "projectId": "<string>",
      "senderId": "<string>",
      "message": "<string>",
      "eventUid": "<string>",
      "remoteCommunicationDetails": "<string>",
      "skipScreenerQuestions": true,
      "profile": {
        "id": "<string>",
        "firstName": "<string>",
        "lastName": "<string>"
      },
      "project": {
        "id": "<string>",
        "name": "<string>",
        "inviteCode": "<string>",
        "incentive": 123
      },
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "skipped": [
    {
      "profileId": "<string>",
      "skipScreenerQuestions": true
    }
  ]
}

Body

application/json

Response

200 - application/json

The response is of type object.