Skip to content
Seal
Esc
navigateopen⌘Jpreview

Add a recipient

Adds a recipient to a draft document.

POST/recipients
Authorization
AuthorizationBearer token · headerrequired

Pass your API key as a Bearer token. API keys are scoped to specific operations — configure scopes in your organization's Settings → Developer → API Keys.

Query parameters
document_idstringrequired
Request body
requiredapplication/json
emailstring<email>required
namestringrequired
roleRecipientRolerequired
  • signer — must provide a signature to complete the document
  • approver — must click Approve; no signature drawn
  • viewer — receives a copy but has no action required
Allowed:signerapproverviewer
orderinteger

Signing order position for sequential workflows

messagestring

Custom message for this recipient's invitation email

Responses
200

Recipient added

idstring
400

Invalid request parameters

typestringrequired

Machine-readable error code

statusintegerrequired

HTTP status code

titlestringrequired

Human-readable error message

detailsobject

Field-level validation errors

401

Missing or invalid API key

typestringrequired

Machine-readable error code

statusintegerrequired

HTTP status code

titlestringrequired

Human-readable error message

detailsobject

Field-level validation errors

404

Resource not found

typestringrequired

Machine-readable error code

statusintegerrequired

HTTP status code

titlestringrequired

Human-readable error message

detailsobject

Field-level validation errors

Try it
Server
Authorization
Parameters
Bodyapplication/json
Request
curl -X POST "https://api.seal.nyc/api/v1/recipients?document_id=string" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "email": "jane@acme.com",
  "name": "Jane Smith",
  "role": "signer",
  "order": 1
}'
Response
{
  "id": "string"
}