Voxco · Schema

DeleteStudyRespondentsResponse

Response of DeleteStudyRespondents API method

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
failedDeletions array List of Respondent Ids that failed to be deleted
notFoundRespondentIds array Array of respondents with no responses found
View JSON Schema on GitHub

JSON Schema

DeleteStudyRespondentsResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DeleteStudyRespondentsResponse",
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "failedDeletions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DeleteStudyRespondentFailure"
      },
      "description": "List of Respondent Ids that failed to be deleted",
      "nullable": true
    },
    "notFoundRespondentIds": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of respondents with no responses found",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Response of DeleteStudyRespondents API method"
}