DKBSignDocs

API reference

GETRequires Bearer token

List contacts

/api/contacts

Retrieve `/api/contacts`. Authenticated routes need `Authorization: Bearer {token}` from `POST /api/v1/login`.

Path parameters

This endpoint has no path parameters.

Query parameters

FieldTypeDescription
search
stringSearch in name, email, phone.
e.g. "ada"
page
integerPage number.
e.g. 1
per_page
integerPage size.
e.g. 25

Request body

This endpoint does not accept a request body.

Responses

StatusMeaning
500See the example response.

Request

curl
curl -X GET 'https://api.dkbsigns.com/api/contacts?search=ada&page=1&per_page=25' \
  -H 'Authorization: Bearer $DKBSIGN_TOKEN'

Response 200

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