Skip to content

List of Customers

A method for retrieving the list of all customers linked to the merchant's shop.

URL

Method: GET

  • Production: https://api.pay.kvell.group/v1/customers
  • Stage: https://api.pay.stage.kvell.group/v1/customers

Request headers

Name Data type Required Description
X-Api-Key string Yes Unique shop identifier
X-Signature string Yes Signature

The X-Signature signature is generated by concatenating X-Api-Key and secret_key. sha256 is computed from the resulting string:

sha256({x-api-key}{secret_key})

where secret_key is the secret key found in the merchant's shop settings.

Response

Response example

[
  {
    "customer_key": "string",
    "email": "string",
    "phone": "string"
  }
]
{
  "errors": [
    {
      "message": "string",
      "code": 0
    }
  ]
}