Docupilot template_delivery API

The template_delivery API from Docupilot — 5 operation(s) for template_delivery.

Operations 9

GET /dashboard/api/v2/templates/{template_id}/deliveries/ Get deliveries configured under this template #
POST /dashboard/api/v2/templates/{template_id}/deliveries/ Create delivery #
GET /dashboard/api/v2/templates/{template_id}/deliveries/{id}/ Get delivery #
PUT /dashboard/api/v2/templates/{template_id}/deliveries/{id}/ Update delivery #
DELETE /dashboard/api/v2/templates/{template_id}/deliveries/{id}/ Delete delivery #
POST /dashboard/api/v2/templates/{template_id}/deliveries/{id}/attachments/ upload email delivery attachments #
GET /dashboard/api/v2/templates/{template_id}/deliveries/{id}/attachments/{attachment_id}/ download delivery attachment #
DELETE /dashboard/api/v2/templates/{template_id}/deliveries/{id}/attachments/{attachment_id}/ delete email delivery attachment #
POST /dashboard/api/v2/templates/{template_id}/deliveries/{id}/upgrade_docusign/ Upgrade docusign delivery api version #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/docupilot-template-delivery-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

docupilot-template-delivery-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Docupilot accounts APIs ai Template Delivery API
  version: '1.0'
  description: Docupilot accounts APIs
  termsOfService: https://docupilot.app/terms-and-conditions/
  contact:
    name: Team Docupilot
    email: support@docupilot.app
servers:
- url: https://api-us1.docupilot.app
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: template_delivery
paths:
  /dashboard/api/v2/templates/{template_id}/deliveries/:
    get:
      operationId: list_template_deliveries
      summary: Get deliveries configured under this template
      parameters:
      - in: header
        name: X-Workspace
        schema:
          type: string
        description: Workspace unique_key
        required: true
      - name: ordering
        required: false
        in: query
        description: Which field to use when ordering the results.
        schema:
          type: string
      - in: path
        name: template_id
        schema:
          type: integer
          format: int32
        required: true
      - in: query
        name: type
        schema:
          type: string
          enum:
          - aws_s3
          - azure_blob_storage
          - box_drive
          - docu_sign
          - dropbox
          - email
          - eversign
          - google_drive
          - hellosign
          - one_drive
          - podio
          - sftp
          - sharepoint
          - sign_now
          - signable
          - signature
          - webhook
          - yousign
          - zoho_crm
      tags:
      - template_delivery
      security:
      - OAuthAuthentication: []
      - SessionAuthentication: []
      - tokenAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TemplateDelivery'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedError'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
          description: ''
    post:
      operationId: create_template_delivery
      summary: Create delivery
      parameters:
      - in: header
        name: X-Workspace
        schema:
          type: string
        description: Workspace unique_key
        required: true
      - in: path
        name: template_id
        schema:
          type: integer
          format: int32
        required: true
      tags:
      - template_delivery
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PolymorphicDelivery'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PolymorphicDelivery'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PolymorphicDelivery'
      security:
      - OAuthAuthentication: []
      - SessionAuthentication: []
      - tokenAuth: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PolymorphicDelivery'
          description: ''
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedError'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
          description: ''
  /dashboard/api/v2/templates/{template_id}/deliveries/{id}/:
    get:
      operationId: retrieve_template_delivery
      summary: Get delivery
      parameters:
      - in: header
        name: X-Workspace
        schema:
          type: string
        description: Workspace unique_key
        required: true
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this delivery.
        required: true
      - in: path
        name: template_id
        schema:
          type: integer
          format: int32
        required: true
      tags:
      - template_delivery
      security:
      - OAuthAuthentication: []
      - SessionAuthentication: []
      - tokenAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PolymorphicDelivery'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedError'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
          description: ''
    put:
      operationId: update_template_delivery
      summary: Update delivery
      parameters:
      - in: header
        name: X-Workspace
        schema:
          type: string
        description: Workspace unique_key
        required: true
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this delivery.
        required: true
      - in: path
        name: template_id
        schema:
          type: integer
          format: int32
        required: true
      tags:
      - template_delivery
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PolymorphicDelivery'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PolymorphicDelivery'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PolymorphicDelivery'
      security:
      - OAuthAuthentication: []
      - SessionAuthentication: []
      - tokenAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PolymorphicDelivery'
          description: ''
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedError'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
          description: ''
    delete:
      operationId: delete_template_delivery
      summary: Delete delivery
      parameters:
      - in: header
        name: X-Workspace
        schema:
          type: string
        description: Workspace unique_key
        required: true
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this delivery.
        required: true
      - in: path
        name: template_id
        schema:
          type: integer
          format: int32
        required: true
      tags:
      - template_delivery
      security:
      - OAuthAuthentication: []
      - SessionAuthentication: []
      - tokenAuth: []
      responses:
        '204':
          description: No response body
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedError'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
          description: ''
  /dashboard/api/v2/templates/{template_id}/deliveries/{id}/attachments/:
    post:
      operationId: upload_delivery_attachments
      summary: upload email delivery attachments
      parameters:
      - in: header
        name: X-Workspace
        schema:
          type: string
        description: Workspace unique_key
        required: true
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this delivery.
        required: true
      - in: path
        name: template_id
        schema:
          type: integer
          format: int32
        required: true
      tags:
      - template_delivery
      requestBody:
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/EmailDeliveryAttachment'
        required: true
      security:
      - OAuthAuthentication: []
      - SessionAuthentication: []
      - tokenAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PolymorphicDelivery'
          description: ''
        '413':
          content:
            text/html:
              schema:
                description: Uploaded File Is Too Large.
          description: ''
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedError'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
          description: ''
  /dashboard/api/v2/templates/{template_id}/deliveries/{id}/attachments/{attachment_id}/:
    get:
      operationId: download_delivery_attachment
      summary: download delivery attachment
      parameters:
      - in: header
        name: X-Workspace
        schema:
          type: string
        description: Workspace unique_key
        required: true
      - in: path
        name: attachment_id
        schema:
          type: string
          pattern: ^\d+$
        required: true
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this delivery.
        required: true
      - in: path
        name: template_id
        schema:
          type: integer
          format: int32
        required: true
      tags:
      - template_delivery
      security:
      - OAuthAuthentication: []
      - SessionAuthentication: []
      - tokenAuth: []
      responses:
        '200':
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedError'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
          description: ''
    delete:
      operationId: delete_delivery_attachment
      summary: delete email delivery attachment
      parameters:
      - in: header
        name: X-Workspace
        schema:
          type: string
        description: Workspace unique_key
        required: true
      - in: path
        name: attachment_id
        schema:
          type: string
          pattern: ^\d+$
        required: true
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this delivery.
        required: true
      - in: path
        name: template_id
        schema:
          type: integer
          format: int32
        required: true
      tags:
      - template_delivery
      security:
      - OAuthAuthentication: []
      - SessionAuthentication: []
      - tokenAuth: []
      responses:
        '204':
          description: No response body
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedError'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
          description: ''
  /dashboard/api/v2/templates/{template_id}/deliveries/{id}/upgrade_docusign/:
    post:
      operationId: upgrade_docusign_delivery
      summary: Upgrade docusign delivery api version
      parameters:
      - in: header
        name: X-Workspace
        schema:
          type: string
        description: Workspace unique_key
        required: true
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this delivery.
        required: true
      - in: path
        name: template_id
        schema:
          type: integer
          format: int32
        required: true
      tags:
      - template_delivery
      security:
      - OAuthAuthentication: []
      - SessionAuthentication: []
      - tokenAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PolymorphicDelivery'
          description: ''
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedError'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
          description: ''
components:
  schemas:
    DocuSignDelivery:
      type: object
      description: ''
      properties:
        id:
          type: integer
          readOnly: true
        failure_email_recipients:
          type:
          - string
          - 'null'
          maxLength: 255
        account:
          type: integer
        custom_tags:
          type:
          - object
          - 'null'
          additionalProperties:
            type: object
            additionalProperties:
              type: array
              items:
                type: object
        signers:
          type: array
          minItems: 1
          items:
            type: object
            properties:
              order:
                type: string
              recipient_type:
                type: string
                enum:
                - signer
                - agent
                - cc
                - editor
              name:
                type: string
                minLength: 1
              is_email_delivery:
                type: boolean
              is_sms_delivery:
                type: boolean
              email_address:
                type: string
                format: email
                minLength: 5
              country_code:
                type: string
              phone_number:
                type: string
            required:
            - recipient_type
            - name
            - is_email_delivery
            - is_sms_delivery
        reminder_settings:
          type:
          - object
          - 'null'
          properties:
            reminder_delay:
              type: number
            reminder_frequency:
              type: number
          required:
          - reminder_delay
          - reminder_frequency
        overwrite_account_defaults:
          type: boolean
          default: false
        name:
          type: string
          maxLength: 255
        type:
          enum:
          - webhook
          - azure_blob_storage
          - box_drive
          - signature
          - docu_sign
          - sign_now
          - zoho_crm
          - dropbox
          - google_drive
          - podio
          - one_drive
          - sharepoint
          - eversign
          - hellosign
          - aws_s3
          - signable
          - yousign
          - email
          - sftp
          type: string
        success_callback_url:
          type:
          - string
          - 'null'
          maxLength: 255
        success_callback_payload:
          type:
          - object
          - 'null'
          additionalProperties: {}
        success_callback_headers:
          type:
          - object
          - 'null'
          additionalProperties: {}
        last_used_on:
          type:
          - string
          - 'null'
          format: date-time
        subject:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
        fullname_anchor_tags:
          type: boolean
        sequenced_signing:
          type: boolean
        expire_after:
          type:
          - integer
          - 'null'
          maximum: 2147483647
          minimum: -2147483648
        enable_optional_signers:
          type: boolean
        api_version:
          enum:
          - '2.0'
          - '2.1'
          type: string
          readOnly: true
        folder_id:
          type:
          - string
          - 'null'
          maxLength: 52
        folder_name:
          type:
          - string
          - 'null'
        allow_reassign:
          type: boolean
      required:
      - account
      - api_version
      - id
      - name
      - signers
    SignableDelivery:
      type: object
      description: ''
      properties:
        id:
          type: integer
          readOnly: true
        failure_email_recipients:
          type:
          - string
          - 'null'
          maxLength: 255
        account:
          type: integer
        parties:
          type: array
          minItems: 1
          items:
            type: object
            properties:
              party_name:
                type: string
                minLength: 1
              party_email:
                type: string
                format: email
              party_role:
                type: string
                enum:
                - signer
                - copy
            required:
            - party_name
            - party_email
            - party_role
        name:
          type: string
          maxLength: 255
        type:
          enum:
          - webhook
          - azure_blob_storage
          - box_drive
          - signature
          - docu_sign
          - sign_now
          - zoho_crm
          - dropbox
          - google_drive
          - podio
          - one_drive
          - sharepoint
          - eversign
          - hellosign
          - aws_s3
          - signable
          - yousign
          - email
          - sftp
          type: string
        success_callback_url:
          type:
          - string
          - 'null'
          maxLength: 255
        success_callback_payload:
          type:
          - object
          - 'null'
          additionalProperties: {}
        success_callback_headers:
          type:
          - object
          - 'null'
          additionalProperties: {}
        last_used_on:
          type:
          - string
          - 'null'
          format: date-time
        title:
          type:
          - string
          - 'null'
        expire_after:
          type:
          - integer
          - 'null'
          maximum: 2147483647
          minimum: 1
        remind_after:
          type:
          - integer
          - 'null'
          maximum: 2147483647
          minimum: 1
      required:
      - account
      - id
      - name
      - parties
    ForbiddenError:
      type: object
      properties:
        detail:
          type: string
      required:
      - detail
      description: ''
    HelloSignDelivery:
      type: object
      description: ''
      properties:
        id:
          type: integer
          readOnly: true
        failure_email_recipients:
          type:
          - string
          - 'null'
          maxLength: 255
        account:
          type: integer
        signers:
          type: array
          minItems: 1
          items:
            type: object
            properties:
              name:
                type: string
                minLength: 1
              email_address:
                type: string
                format: email
            required:
            - name
            - email_address
        name:
          type: string
          maxLength: 255
        type:
          enum:
          - webhook
          - azure_blob_storage
          - box_drive
          - signature
          - docu_sign
          - sign_now
          - zoho_crm
          - dropbox
          - google_drive
          - podio
          - one_drive
          - sharepoint
          - eversign
          - hellosign
          - aws_s3
          - signable
          - yousign
          - email
          - sftp
          type: string
        success_callback_url:
          type:
          - string
          - 'null'
          maxLength: 255
        success_callback_payload:
          type:
          - object
          - 'null'
          additionalProperties: {}
        success_callback_headers:
          type:
          - object
          - 'null'
          additionalProperties: {}
        last_used_on:
          type:
          - string
          - 'null'
          format: date-time
        title:
          type:
          - string
          - 'null'
        subject:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
        cc:
          type: array
          items:
            type: string
            maxLength: 1000
        use_text_tags:
          type: boolean
        hide_text_tags:
          type: boolean
        sequenced_signing:
          type: boolean
        enable_optional_signers:
          type: boolean
      required:
      - account
      - id
      - name
      - signers
    SignNowDelivery:
      type: object
      description: ''
      properties:
        id:
          type: integer
          readOnly: true
        failure_email_recipients:
          type:
          - string
          - 'null'
          maxLength: 255
        account:
          type: integer
        signers:
          type: array
          minItems: 1
          items:
            type: object
            properties:
              order:
                type: string
              role:
                type: string
                minLength: 1
              email:
                type: string
                format: email
            required:
            - role
            - email
        name:
          type: string
          maxLength: 255
        type:
          enum:
          - webhook
          - azure_blob_storage
          - box_drive
          - signature
          - docu_sign
          - sign_now
          - zoho_crm
          - dropbox
          - google_drive
          - podio
          - one_drive
          - sharepoint
          - eversign
          - hellosign
          - aws_s3
          - signable
          - yousign
          - email
          - sftp
          type: string
        success_callback_url:
          type:
          - string
          - 'null'
          maxLength: 255
        success_callback_payload:
          type:
          - object
          - 'null'
          additionalProperties: {}
        success_callback_headers:
          type:
          - object
          - 'null'
          additionalProperties: {}
        last_used_on:
          type:
          - string
          - 'null'
          format: date-time
        subject:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
        cc:
          type: array
          items:
            type: string
            maxLength: 1000
        sequenced_signing:
          type: boolean
        enable_optional_signers:
          type: boolean
      required:
      - account
      - id
      - name
      - signers
    WebhookDelivery:
      type: object
      description: ''
      properties:
        id:
          type: integer
          readOnly: true
        failure_email_recipients:
          type:
          - string
          - 'null'
          maxLength: 255
        name:
          type: string
          maxLength: 255
        type:
          enum:
          - webhook
          - azure_blob_storage
          - box_drive
          - signature
          - docu_sign
          - sign_now
          - zoho_crm
          - dropbox
          - google_drive
          - podio
          - one_drive
          - sharepoint
          - eversign
          - hellosign
          - aws_s3
          - signable
          - yousign
          - email
          - sftp
          type: string
        success_callback_url:
          type:
          - string
          - 'null'
          maxLength: 255
        success_callback_payload:
          type:
          - object
          - 'null'
          additionalProperties: {}
        success_callback_headers:
          type:
          - object
          - 'null'
          additionalProperties: {}
        last_used_on:
          type:
          - string
          - 'null'
          format: date-time
        url:
          type: string
          maxLength: 255
        headers:
          type:
          - object
          - 'null'
          additionalProperties: {}
        payload:
          type:
          - object
          - 'null'
          additionalProperties: {}
      required:
      - id
      - name
      - url
    SignatureDelivery:
      type: object
      description: ''
      properties:
        id:
          type: integer
          readOnly: true
        failure_email_recipients:
          type:
          - string
          - 'null'
          maxLength: 255
        signers:
          type: array
          minItems: 1
          items:
            type: object
            properties:
              id:
                type: number
              order:
                type: number
              name:
                type: string
                minLength: 3
              email:
                type: string
                format: email
            required:
            - id
            - name
            - email
        use_default_reminders:
          type: boolean
          default: false
        expiry:
          type:
          - integer
          - 'null'
        first_reminder:
          type:
          - integer
          - 'null'
        reminder_frequency:
          type:
          - integer
          - 'null'
        warn_before:
          type:
          - integer
          - 'null'
        sender:
          type:
          - integer
          - 'null'
        sender_mode:
          enum:
          - fixed
          - smart
          type: string
        folder_name:
          type:
          - string
          - 'null'
          readOnly: true
        name:
          type: string
          maxLength: 255
        type:
          enum:
          - webhook
          - azure_blob_storage
          - box_drive
          - signature
          - docu_sign
          - sign_now
          - zoho_crm
          - dropbox
          - google_drive
          - podio
          - one_drive
          - sharepoint
          - eversign
          - hellosign
          - aws_s3
          - signable
          - yousign
          - email
          - sftp
          type: string
        success_callback_url:
          type:
          - string
          - 'null'
          maxLength: 255
        success_callback_payload:
          type:
          - object
          - 'null'
          additionalProperties: {}
        success_callback_headers:
          type:
          - object
          - 'null'
          additionalProperties: {}
        last_used_on:
          type:
          - string
          - 'null'
          format: date-time
        subject:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
        cc:
          type: array
          items:
            type: string
            maxLength: 1000
        sequenced_signing:
          type: boolean
        enable_optional_signers:
          type: boolean
        folder:
          type:
          - integer
          - 'null'
      required:
      - folder_name
      - id
      - name
      - signers
    AzureBlobStorageDelivery:
      type: object
      description: ''
      properties:
        id:
          type: integer
          readOnly: true
        failure_email_recipients:
          type:
          - string
          - 'null'
          maxLength: 255
        account:
          type: integer
        name:
          type: string
          maxLength: 255
        type:
          enum:
          - webhook
          - azure_blob_storage
          - box_drive
          - signature
          - docu_sign
          - sign_now
          - zoho_crm
          - dropbox
          - google_drive
          - podio
          - one_drive
          - sharepoint
          - eversign
          - hellosign
          - aws_s3
          - signable
          - yousign
          - email
          - sftp
          type: string
        success_callback_url:
          type:
          - string
          - 'null'
          maxLength: 255
        success_callback_payload:
          type:
          - object
          - 'null'
          additionalProperties: {}
        success_callback_headers:
          type:
          - object
          - 'null'
          additionalProperties: {}
        last_used_on:
          type:
          - string
          - 'null'
          format: date-time
        path:
          type:
          - string
          - 'null'
        container_name:
          type: string
          description: Azure blob container name.
          maxLength: 64
      required:
      - account
      - container_name
      - id
      - name
    BoxDriveDelivery:
      type: object
      description: ''
      properties:
        id:
          type: integer
          readOnly: true
        failure_email_recipients:
          type:
          - string
          - 'null'
          maxLength: 255
        account:
          type: integer
        name:
          type: string
          maxLength: 255
        type:
          enum:
          - webhook
          - azure_blob_storage
          - box_drive
          - signat

# --- truncated at 32 KB (56 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/docupilot/refs/heads/main/openapi/docupilot-template-delivery-api-openapi.yml