Base URL
All client endpoints are available at:Available Endpoints
The Client Management Service provides functionality for managing clients and viewing their shipment history:Client Operations
- GET /api/v1/clientes - List all clients
- GET /api/v1/clientes/ - Get client by ID
- POST /api/v1/clientes - Create or update a client
- GET /api/v1/clientes/search - Search clients by keyword
Client Shipment History
- GET /api/v1/clientes//envios - Get paginated shipment history for a client
- GET /api/v1/envios/mis-envios - Get shipment history by email (public endpoint)
Client Object Structure
Clients are represented with the following fields:Unique client identifier (auto-generated)
National ID number (DNI)
Client’s full name
Client’s email address
Client’s phone number
Client Search
The search endpoint allows finding clients by any field containing the keyword:Pagination
Endpoints that return multiple results support pagination:Page number (zero-indexed)
Number of items per page
Client data is used for shipment tracking and notifications. Ensure email addresses are valid for delivery notifications.