SignNow · Example Payload

Signnow Upload Document Example

Example request and response for uploading a PDF document to SignNow.

E-SignatureDocument ManagementElectronic SignatureWorkflow Automation

Signnow Upload Document Example is an example object payload from SignNow, 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": "Upload Document Example",
  "description": "Example request and response for uploading a PDF document to SignNow.",
  "request": {
    "method": "POST",
    "url": "https://api.signnow.com/document",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "multipart/form-data"
    },
    "body": {
      "file": "<binary PDF content>",
      "Tags": "contract,legal,nda"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "id": "a1b2c3d4e5f6789012345678901234567890abcd"
    }
  }
}