Voxco · Schema

NewSessionResponse

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
authenticationToken string
bearerToken string
View JSON Schema on GitHub

JSON Schema

NewSessionResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NewSessionResponse",
  "required": [
    "authenticationToken",
    "bearerToken"
  ],
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "authenticationToken": {
      "type": "string",
      "format": "uuid"
    },
    "bearerToken": {
      "minLength": 1,
      "type": "string"
    }
  },
  "additionalProperties": false
}