PDFfiller · Example Payload

Pdffiller Create Signature Request Example

Example request to send a PDF document to multiple recipients for individual signing.

PDFE-SignatureDocument ManagementForm BuilderPDF EditingElectronic SignatureDocument Workflow

Pdffiller Create Signature Request Example is an example object payload from PDFfiller, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Create Signature Request (SendToEach)",
  "description": "Example request to send a PDF document to multiple recipients for individual signing.",
  "request": {
    "method": "POST",
    "url": "https://api.pdffiller.com/v2/signature_requests",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "document_id": 12345678,
      "method": "SendToEach",
      "callback_url": "https://example.com/webhooks/signatures",
      "recipients": [
        {
          "email": "alice@example.com",
          "name": "Alice Smith",
          "message": "Please review and sign the attached agreement.",
          "access": "sign"
        },
        {
          "email": "bob@example.com",
          "name": "Bob Jones",
          "message": "Please review and sign the attached agreement.",
          "access": "sign"
        }
      ]
    }
  },
  "response": {
    "status": 201,
    "body": {
      "id": 77009988,
      "document_id": 12345678,
      "method": "SendToEach",
      "status": "awaiting",
      "sign_in_order": false,
      "callback_url": "https://example.com/webhooks/signatures",
      "recipients": [
        {
          "id": 1001,
          "email": "alice@example.com",
          "name": "Alice Smith",
          "status": "awaiting",
          "access": "sign"
        },
        {
          "id": 1002,
          "email": "bob@example.com",
          "name": "Bob Jones",
          "status": "awaiting",
          "access": "sign"
        }
      ],
      "created_at": "2026-06-13T10:05:00Z",
      "updated_at": "2026-06-13T10:05:00Z"
    }
  }
}