Send project link invitation to multiple team respondents to allow them to sign up for your project. Can allow respondent to skip the screener questions. Requires organization feature: participant database.
cURL
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 } ] }
The response is of type object.
object