Pigeon // E-Sign
  1. Documents
Pigeon // E-Sign
  • Introduction
  • Authentication
  • Integrations
  • Documents
    • List Documents
      GET
    • Create Document
      POST
    • Get Document Status
      GET
    • Delete Document
      DELETE
    • Update Document
      PATCH
    • Update Document Status
      PATCH
    • Move Document to Draft
      POST
    • Get Document Details
      GET
    • Send Document
      POST
    • Create Document Session
      POST
    • Download Document
      GET
    • Download Protected Document
      GET
    • Update Document Ownership
      PATCH
    • Transfer Documents Ownership
      PATCH
  • Document Attachments
    • Document Attachment List
      GET
    • Document Attachment Create
      POST
    • Document Attachment Details
      GET
    • Document Attachment Delete
      DELETE
    • Document Attachment Download
      GET
  • Document Generation
    • List Document Fields
      GET
    • Create Document Fields
      POST
  • Document Recipients
    • Add Document Recipient
      POST
    • Edit Document Recipient
      PATCH
    • Delete Document Recipient
      DELETE
    • Reassign Document Recipient
      POST
  • Bulk Send
    • Trigger Bulk Send
    • Create Bulk Send List
    • Get Bulk Send List
    • Get Bulk Send Lists
    • Update Bulk Send List
    • Delete Bulk Send List
  • Templates
    • List Templates
    • Create Template
    • Template Details
    • Delete Template
  • Cloud Storage
    • List Cloud Storage Providers
    • Connect Cloud Storage Providers
    • Disconnect Cloud Storage Provider
  • Webhooks
    • Get all webhook subscriptions
    • Create webhook subscription
    • Get webhook subscription by uuid
    • Update webhook subscription
    • Delete webhook subscription
  • Branding
    • Get Organization Branding
    • Update Organization Branding
  • Confirmation Page
    • Enable/Disable Signature Confirmation Page
  1. Documents

List Documents

GET
/documents

Request

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/documents?completed_from=2021-10-27T15:22:23.132757Z&completed_to=2021-10-27T15:22:23.132757Z&contact_id=9FeAY2NB3C9qDdtQRb4tTL&count=50&created_from=2021-10-27T15:22:23.132757Z&created_to=2021-10-27T15:22:23.132757Z&deleted&id=BhVzRcxH9Z2LgfPPGXFUBa&membership_id=BhVzRcxH9Z2LgfPPGXFUBa&metadata=metadata_opportunity_id=2181432&metadata=metadata_custom_key=custom_value&modified_from=2021-10-27T15:22:23.132757Z&modified_to=2021-10-27T15:22:23.132757Z&order_by=date_status_changed&page=1&q=Sample Document&status&tag=tag_1&template_id=BhVzRcxH9Z2LgfPPGXFUBa'

Responses

🟢200OK
application/json
OK
Body

Example
{
    "results": [
        {
            "id": "XjV64iXRJMerjSpk428QSF",
            "name": "Sample Document",
            "status": "document.draft",
            "date_created": "2024-07-02T16:21:35.770196Z",
            "date_modified": "2024-07-02T16:21:37.696724Z",
            "expiration_date": null,
            "version": "2"
        },
        {
            "id": "6NbHUUu6uuYN2tqJvgtf9h",
            "name": "Services Invoice",
            "status": "document.completed",
            "date_created": "2024-01-25T15:35:27.186107Z",
            "date_modified": "2024-06-21T15:07:34.192101Z",
            "expiration_date": "2024-08-20T15:07:32.869161Z",
            "version": "2"
        }
    ]
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠429429
Modified at 2024-09-18 01:57:16
Previous
Integrations
Next
Create Document