Docupilot · Schema

ChangePassword

ChangePassword schema from Docupilot accounts API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
current_password string
new_password string
clear_other_sessions boolean
View JSON Schema on GitHub

JSON Schema

accounts-ChangePassword.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ChangePassword",
  "description": "ChangePassword schema from Docupilot accounts API",
  "type": "object",
  "properties": {
    "current_password": {
      "type": "string",
      "writeOnly": true
    },
    "new_password": {
      "type": "string",
      "writeOnly": true
    },
    "clear_other_sessions": {
      "type": "boolean",
      "default": false
    }
  },
  "required": [
    "current_password",
    "new_password"
  ]
}