Skip to main content
POST
/
v3
/
getAllRespondents
Get all respondents
curl --request POST \
  --url https://api.redem.io/v3/getAllRespondents \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '{
  "surveyName": "<string>"
}'
{
  "success": true,
  "message": "<string>",
  "results": [
    {
      "isExcluded": false,
      "reasonsForExclusion": [
        "<string>"
      ],
      "redemScore": 85,
      "qualityScoreSummary": [
        {
          "qualityCheck": "OES",
          "score": 78,
          "reason": "The user shows several inconsistencies and contradictions, such as different ...",
          "incoherentQuestions": [
            "Q1",
            "Q2"
          ]
        }
      ],
      "dataPointsSummary": [
        {
          "qualityCheck": "OES",
          "dataPointId": "Q1",
          "score": 85,
          "category": "VALID_ANSWER",
          "reason": "Straightliner, Partial Straightliner"
        }
      ]
    }
  ]
}

Authorizations

api-key
string
header
required

Body

application/json

Request body for getting all respondents

surveyName
string
required

The name of the survey.

Response

Successfully retrieved all respondents

success
boolean
message
string
results
object[]