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

const client = new SnagSolutions({
  apiKey: process.env['X_API_KEY'], // This is the default and can be omitted
});

async function main() {
  const questionsResponses = await client.loyalty.questionsResponses.list();

  console.log(questionsResponses.responses);
}

main();
{
  "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
          }
        ]
      }
    }
  ]
}

Query Parameters

questionsId

UUID(s) of the questions to filter responses

Example:
["123e4567-e89b-12d3-a456-426614174001"]

Response

200
application/json
200

List of question responses with details

responses
object[]
required

Response details including the question and choice information