Docupilot · Schema

TransferOwnership

TransferOwnership schema from Docupilot accounts API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
transfer_to integer
otp string
View JSON Schema on GitHub

JSON Schema

accounts-TransferOwnership.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TransferOwnership",
  "description": "TransferOwnership schema from Docupilot accounts API",
  "type": "object",
  "properties": {
    "transfer_to": {
      "type": "integer"
    },
    "otp": {
      "type": "string",
      "maxLength": 6,
      "minLength": 6
    }
  },
  "required": [
    "otp",
    "transfer_to"
  ]
}