For the complete documentation index, see llms.txt. This page is also available as Markdown.

Survey

Get equipment configuration survey

get

Retrieve the configuration survey for a specific equipment product.

Responses
200

Success

application/json

Equipment configuration survey containing questions and answers.

get/api/equipment/surveys/**
GET /api/equipment/surveys/** HTTP/1.1
Accept: */*
{
  "questionAnswerGroup": {
    "id": 1,
    "questionAreas": "text",
    "questionAnswerSets": {
      "ANY_ADDITIONAL_PROPERTY": [
        {
          "id": 1,
          "type": "text",
          "isHidden": true,
          "sendToMerchantApp": true,
          "selectedAnswer": 1,
          "answers": [
            {
              "id": 1,
              "selected": true,
              "answer": "text"
            }
          ],
          "children": [
            "[Circular Reference]"
          ],
          "required": true,
          "question": "text",
          "conditionalOnAnswer": 1,
          "tags": [
            {
              "group": "text",
              "name": "text"
            }
          ]
        }
      ]
    }
  },
  "metadata": {
    "exchangeId": "text",
    "timestamp": "text"
  }
}

Last updated

Was this helpful?