Get custom form answers for a spot member
Get custom form answers for a spot member
        GET
    /v1/spotMembers/{spotMemberId}/customFormAnswers
  
  curl \
 --request GET 'https://openapi.meltingspot.io/v1/spotMembers/{spotMemberId}/customFormAnswers'
        Response examples (200)
  
  {
  "items": [
    {
      "questionId": "string",
      "questionLabel": "string",
      "visibility": "string",
      "order": 42.0,
      "isRequired": true,
      "type": "Description",
      "possibleAnswers": [
        "string"
      ],
      "answers": [
        "string"
      ]
    }
  ],
  "total": 42
}