Skip to content
Seal
Esc
navigateopen⌘Jpreview

List recipients

GET/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
Responses
200

OK

recipientsRecipient[]
Show properties
Array of Recipient
idstringrequired
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
statusRecipientStatusrequired
Allowed:pendingviewedsignedapproveddeclined
orderinteger

Position in sequential signing order

signed_atstring<date-time>
viewed_atstring<date-time>
declined_atstring<date-time>
decline_reasonstring
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
Request
curl -X GET "https://api.seal.nyc/api/v1/recipients?document_id=string" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "recipients": [
    {
      "id": "string",
      "email": "user@example.com",
      "name": "string",
      "role": "signer",
      "status": "pending",
      "order": 0,
      "signed_at": "2019-08-24T14:15:22Z",
      "viewed_at": "2019-08-24T14:15:22Z",
      "declined_at": "2019-08-24T14:15:22Z",
      "decline_reason": "string"
    }
  ]
}