Skip to main content
GET
/
api
/
v1
/
survey
/
{surveyId}
GET /api/v1/survey/{surveyId}
curl --request GET \
  --url https://api.scoot.app/api/v1/survey/{surveyId}
{
  "surveyId": 123,
  "surveyConfig": {
    "title": "<string>",
    "description": "<string>",
    "color": "<string>"
  },
  "questions": [
    {
      "surveyQuestionId": 123,
      "title": "<string>",
      "description": "<string>",
      "questionType": "SCALE"
    }
  ]
}
Retrieves detailed information about a specific survey by ID.

Path Parameters

surveyId
integer
required

Response

200 - application/json

OK

surveyId
integer
surveyConfig
object
questions
object[]
I