Skip to main content

Endpoint

POST /Cliente/VerCli

Request Body

Identificador
string
required
The client’s unique identifier (email or ID)

Request Example

curl -X POST https://api.example.com/Cliente/VerCli \
  -H "Content-Type: application/json" \
  -d '{
    "Identificador": "[email protected]"
  }'

Response

resultados
string
Client information or error message

Response Examples

"Cliente encontrado: Juan Pérez"

Status Codes

  • 200 OK - Client found and returned successfully
  • 400 Bad Request - Invalid request or client not found
  • 404 Not Found - Client does not exist

Source Reference

Controller: ClienteController.cs:354-383

Build docs developers (and LLMs) love