Vapi · Schema

UpdateUserRoleDTO

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
userId string
role string
View JSON Schema on GitHub

JSON Schema

vapi-updateuserroledto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateUserRoleDTO",
  "title": "UpdateUserRoleDTO",
  "type": "object",
  "properties": {
    "userId": {
      "type": "string"
    },
    "role": {
      "enum": [
        "admin",
        "editor",
        "viewer"
      ],
      "type": "string"
    }
  },
  "required": [
    "userId",
    "role"
  ]
}