- Autenticação
- Fatura
- Clientes
- Merchant
- Produtos
- Webhooks & Gatilhos
- Utilidades
- Login Admin CopyPOST
- Create Merchant CopyPOST
Consultar Clientes por ID
GET
http://{{app_url}}/api/v1/customers/id_do_customer
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/id_do_customer'
Respostas
🟢200Buscar Cliente por ID
application/json
Body
array of:
name
string
opcional
email
string
opcional
description
null
opcional
cellphone
string
opcional
cpfcnpj
string
opcional
address
object
opcional
street
string
requerido
number
string
requerido
complement
string
requerido
neighborhood
string
requerido
city
string
requerido
state
string
requerido
zipcode
string
requerido
meta
array
opcional
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": []
}
]
Modified at 2024-10-10 18:23:35