Voxco · Schema

NewSessionRequest

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
account string
userName string
password string
View JSON Schema on GitHub

JSON Schema

NewSessionRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NewSessionRequest",
  "required": [
    "account",
    "password",
    "userName"
  ],
  "type": "object",
  "properties": {
    "account": {
      "minLength": 1,
      "type": "string"
    },
    "userName": {
      "minLength": 1,
      "type": "string"
    },
    "password": {
      "minLength": 1,
      "type": "string"
    }
  },
  "additionalProperties": false
}