Skip to main content
GET
/
clientes
/
{id}
Obter cliente por ID
curl --request GET \
  --url https://api-vendas.taximachine.com.br/api/v2/integracao/clientes/{id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'api-key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": "1",
      "nome": "Exemplo",
      "email": "exemplo@email.com.br",
      "telefone": "(11) 97772-3133",
      "status_cliente": "A",
      "cpf": null
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

api-key
string
header
required

Obrigatório. Sua chave API.

Path Parameters

id
string
required

ID do cliente

Response

OK

The response is of type object.