- Autenticação
- Fatura
- Clientes
- Merchant
- Produtos
- Webhooks & Gatilhos
- Utilidades
- Login Admin CopyPOST
- Create Merchant CopyPOST
Buscar Clientes
GET
http://{{app_url}}/api/v1/customers
Requisição
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Exemplo:
Authorization: Bearer ********************
Exemplos de Requisição
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://{{app_url}}/api/v1/customers'
Respostas
🟢200Buscar clientes
application/json
Body
array of:
name
string
requerido
email
string
requerido
description
null
requerido
cellphone
string
requerido
cpfcnpj
string
requerido
address
object
requerido
street
string
requerido
number
string
requerido
complement
string
requerido
neighborhood
string
requerido
city
string
requerido
state
string
requerido
zipcode
string
requerido
meta
array
requerido
Exemplo
[
{
"name": "Daniel Leal dos Santos",
"email": "daniel.leal.san@gmail.com",
"description": null,
"cellphone": "41988555949",
"cpfcnpj": "07120188917",
"address": {
"street": "Rua Rev. Paulo Hecke",
"number": "455",
"complement": "Sobrado C",
"neighborhood": "Ahú",
"city": "Curitiba",
"state": "PR",
"zipcode": "82200300"
},
"meta": []
},
{
"name": "Daniel Leal dos Santos",
"email": "daniel.leal.san@gmail.com",
"description": null,
"cellphone": "41988555949",
"cpfcnpj": "07120188917",
"address": {
"street": "Rua Rev. Paulo Hecke",
"number": "455",
"complement": "Sobrado C",
"neighborhood": "Ahú",
"city": "Curitiba",
"state": "PR",
"zipcode": "82200300"
},
"meta": []
}
]
Modified at 2024-10-10 18:23:35