DKBSignDocs

API reference

POSTRequires Bearer token

Preview CSV import

/api/contacts/imports/csv/preview

Submit `/api/contacts/imports/csv/preview`. 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
file
Required
stringCSV file.

Responses

StatusMeaning
500See the example response.

Request

curl
curl -X POST 'https://api.dkbsigns.com/api/contacts/imports/csv/preview' \
  -H 'Authorization: Bearer $DKBSIGN_TOKEN' \
  -H 'Accept: application/json' \
  -F 'file=file'

Response 200

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