{ "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" } } }