PandaDoc · Schema

DocumentSendResponse

Confirmation of a document having been sent.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
id string Unique identifier of the sent document.
name string Display name of the document.
status object
View JSON Schema on GitHub

JSON Schema

pandadoc-documentsendresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DocumentSendResponse",
  "title": "DocumentSendResponse",
  "type": "object",
  "description": "Confirmation of a document having been sent.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the sent document."
    },
    "name": {
      "type": "string",
      "description": "Display name of the document."
    },
    "status": {
      "$ref": "#/components/schemas/DocumentStatus"
    }
  }
}