Skip to main content
GET
/
v1
/
customer
/
{customerId}
Obter cliente.
curl --request GET \
  --url https://api.staging.cartaosimples.com.br/integration/v1/customer/{customerId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "nome": "<string>",
  "documento": "<string>",
  "endereco": {
    "rua": "<string>",
    "cidade": "<string>",
    "estado": "<string>",
    "bairro": "<string>",
    "cep": "<string>",
    "pais": "<string>",
    "numero": "<string>",
    "complemento": "<string>"
  },
  "dataDeNascimento": "2023-11-07T05:31:56Z",
  "email": "<string>",
  "celular": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://documentacao.cartaosimples.com.br/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Cabeçalho de autenticação Bearer no formato Bearer <token> onde <token> é seu TOKEN de autenticação

Path Parameters

customerId
string<uuid>
required

Identificador único do cliente.

Example:

"3fa85f64-5717-4562-b3fc-2c963f66afa6"

Response

OK

id
string<uuid>
nome
string | null
documento
string | null
endereco
object
dataDeNascimento
string<date-time>
email
string | null
celular
string | null