Skip to main content
POST
/
api
/
v2
/
documents
/
sign
/
bulk
Sign multiple documents
curl --request POST \
  --url https://sandbox.killb.app/api/v2/documents/sign/bulk \
  --header 'Authorization: Bearer <token>'
{
  "message": "Documents signed successfully",
  "documentsSigned": [
    "4d23aa52-1b40-4584-a8ea-58aba6099c5c"
  ],
  "documentAlreadySignedOrNotFound": [
    {
      "id": "4d23aa52-1b40-4584-a8ea-58aba6099c5c",
      "reason": "Document not found"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

message
string
required
Example:

"Documents signed successfully"

documentsSigned
string[]
required
Example:
["4d23aa52-1b40-4584-a8ea-58aba6099c5c"]
documentAlreadySignedOrNotFound
string[]
required
Example:
[
{
"id": "4d23aa52-1b40-4584-a8ea-58aba6099c5c",
"reason": "Document not found"
}
]