GET
/
customer
/
list
curl --request GET \
  --url https://api.abacatepay.com/v1/customer/list \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "bill_123456",
      "metadata": {
        "name": "Daniel Lima",
        "cellphone": "(11) 4002-8922",
        "email": "daniel_lima@abacatepay.com",
        "taxId": "123.456.789-01"
      }
    }
  ],
  "error": "<any>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Lista de clientes retornada com sucesso.
data
object[]

Lista de clientes.

Os dados do seu cliente.

error
any