Skip to main content
POST
/
api
/
v1
/
documents
/
{id}
/
reminders
Send reminders to one or more signers
curl --request POST \
  --url https://app.sajn.se/api/v1/documents/{id}/reminders \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '
{
  "signerIds": [
    "<string>"
  ]
}
'
{
  "sent": 0,
  "skipped": 0,
  "failed": 0,
  "results": [
    {
      "signerId": "<string>",
      "signerEmail": "<string>",
      "signerName": "<string>",
      "reason": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.sajn.se/llms.txt

Use this file to discover all available pages before exploring further.

Headers

authorization
string
required

Bearer token for API authentication

Path Parameters

id
string
required

Body

application/json

Body

signerIds
string[]

Specific signer IDs to remind. Omit to remind every pending signer on the document.

Response

200

sent
integer
required
Required range: -9007199254740991 <= x <= 9007199254740991
skipped
integer
required
Required range: -9007199254740991 <= x <= 9007199254740991
failed
integer
required
Required range: -9007199254740991 <= x <= 9007199254740991
results
object[]
required