SignNow · Example Payload

Signnow Send Signature Invite Example

Example request and response for sending signature invitations to recipients for a document.

E-SignatureDocument ManagementElectronic SignatureWorkflow Automation

Signnow Send Signature Invite 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": "Send Signature Invite Example",
  "description": "Example request and response for sending signature invitations to recipients for a document.",
  "request": {
    "method": "POST",
    "url": "https://api.signnow.com/document/a1b2c3d4e5f6789012345678901234567890abcd/invite",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "from": "sender@company.com",
      "to": [
        {
          "email": "recipient@example.com",
          "role_id": "role_abc123",
          "order": 1,
          "subject": "Please sign: Employment Contract",
          "message": "Please review and sign the attached employment contract at your earliest convenience."
        }
      ],
      "cc": ["manager@company.com"],
      "subject": "Please sign: Employment Contract",
      "message": "Signature requested for: Employment Contract"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "status": "success"
    }
  }
}