Pigeon // E-Sign
  1. Document Attachments
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. Document Attachments

Document Attachment Details

GET
/documents/{id}/attachments/{attachment_id}
Returns details of the specific document's attachment

Request

Path 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/BhVzRcxH9Z2LgfPPGXFUBa/attachments/89ce2f49-10fb-4e9b-b5f3-e28be2a5c042'

Responses

🟢200OK
application/json
OK
Body

Example
{
    "uuid": "5a2df796-6c65-492b-955c-5709229a89f7",
    "date_created": "2021-10-27T20:54:18.757496Z",
    "created_by": {
        "id": "WbAzFZFMgXHnoQREADTdnE",
        "email": "test_user@mail.com",
        "first_name": "John",
        "last_name": "Smith",
        "avatar": "https://pd-live-media.s3.amazonaws.com/users/000GTSGwJw000L2KZqc000/avatar.jpg"
    },
    "name": "AttachedPhoto.jpg"
}
🟠401Unauthorized
🟠404Record Not Found
🟠409409
🟠429429
Modified at 2024-09-17 17:05:10
Previous
Document Attachment Create
Next
Document Attachment Delete