GET
/
api
/
loyalty
/
questions_responses
JavaScript
import SnagSolutions from '@snagsolutions/sdk';

const client = new SnagSolutions({
  apiKey: 'My API Key',
});

const questionsResponses = await client.loyalty.questionsResponses.list();

console.log(questionsResponses.responses);
{
  "responses": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "loyaltyQuestionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "loyaltyQuestionChoiceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "createdAt": "2023-11-07T05:31:56Z",
      "isCorrect": true,
      "question": {
        "text": "<string>",
        "loyaltyQuestionChoices": [
          {
            "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
            "text": "<string>",
            "isCorrect": true
          }
        ]
      }
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

questionsId

UUID(s) of the questions to filter responses

Example:
["123e4567-e89b-12d3-a456-426614174001"]
websiteId
string<uuid>

UUID of the website to filter responses

Example:

"123e4567-e89b-12d3-a456-426614174001"

organizationId
string<uuid>

UUID of the organization to filter responses

Example:

"123e4567-e89b-12d3-a456-426614174001"

userId
string<uuid>

UUID of the user to filter responses

Example:

"123e4567-e89b-12d3-a456-426614174001"

Response

200
application/json

200

List of question responses with details