GET /my/survey/answered

GET /my/survey/answered

Returns users answered survey questions

Responses

GET /my/survey/answered
curl \
 -X GET https://api.cosmily.com/api/v1/my/survey/answered \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "questions": [
    {
      "identifier": "routine_time_commitment",
      "display": "How much time do you set aside to take care of your skin before bed?",
      "type": "single",
      "answers": [
        {
          "val": "short",
          "display": "Less than 5 minutes."
        },
        {
          "val": "medium",
          "display": "5 to 10 minutes."
        },
        {
          "val": "long",
          "display": "More than 10 minutes."
        }
      ],
      "response": [
        "long"
      ]
    }
  ],
  "percent_complete": 50
}