Voxco · Schema

GetUsersResponse

The users property contains a list of users.

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
users array A list of users.
View JSON Schema on GitHub

JSON Schema

GetUsersResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GetUsersResponse",
  "required": [
    "users"
  ],
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "users": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/User"
      },
      "description": "A list of users."
    }
  },
  "additionalProperties": false,
  "description": "The users property contains a list of users."
}