Lista clientes da empresa
cURL
curl --request GET \ --url https://api.example.com/admin/clientes
{ "clientes": [ { "id": "cliente_001", "nome": "João Silva", "email": "[email protected]", "telefone": "+5511999999999", "saldo_pontos": 350, "total_compras": 15, "ultima_compra": "2026-01-18T19:30:00Z", "status": "active" } ], "total": 150, "page": 1 }
active
neutral
lost
curl -X GET "https://api.indiqai.com/api/v1/admin/clientes?page=1&limit=20" \ -H "Authorization: Bearer <token>"
Was this page helpful?