Docupilot · Schema

ChangeEmail

ChangeEmail schema from Docupilot accounts API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
email string
password string
View JSON Schema on GitHub

JSON Schema

accounts-ChangeEmail.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ChangeEmail",
  "description": "ChangeEmail schema from Docupilot accounts API",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "maxLength": 255
    },
    "password": {
      "type": "string",
      "maxLength": 128
    }
  },
  "required": [
    "email",
    "password"
  ]
}