DKBSignDocs

API reference

POSTRequires Bearer token

Self-sign documents

/api/v4/sign

Submit `/api/v4/sign`. Authenticated routes need `Authorization: Bearer {token}` from `POST /api/v1/login`.

Path parameters

This endpoint has no path parameters.

Query parameters

This endpoint has no query parameters.

Request body

Send as multipart/form-data.

FieldTypeDescription
documents[]
Required
stringPDFs to sign (max 100).

Responses

StatusMeaning
500See the example response.

Request

curl
curl -X POST 'https://api.dkbsigns.com/api/v4/sign' \
  -H 'Authorization: Bearer $DKBSIGN_TOKEN' \
  -H 'Accept: application/json' \
  -F 'documents[]=documents[]'

Response 200

json
{
  "status": "success",
  "message": "Upstream response is forwarded unchanged."
}