The Clients API manages the customer directory for Yakult distributors. Each client record stores the essential contact details needed for order delivery — name, phone number, and address. TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/160906/Yakultt-App/llms.txt
Use this file to discover all available pages before exploring further.
activo flag determines whether a client appears in order-creation flows; toggling it off lets you retain historical data without exposing the client to new orders. No authentication is required on any clients endpoint.
GET /api/clientes
Returns all client records ordered alphabetically by name, including both active and inactive clients. Example requestUnique numeric ID of the client.
Business or customer name.
Phone number used for WhatsApp order updates.
Delivery address.
Account status as a TINYINT:
1 = active, 0 = inactive.ISO 8601 timestamp of when the record was created.
POST /api/clientes
Creates a new client record. Newly created clients are active by default. No authentication is required.Business or customer name, e.g.
"Tienda López".Phone number. Used to send WhatsApp notifications on order status changes.
Full delivery address.
Auto-generated ID assigned to the new client.
Client name as stored.
Phone number as stored.
Delivery address as stored.
Always
true for a newly created client.PUT /api/clientes/:id
Updates the name, phone number, and address of an existing client. Supply all three fields. No authentication is required.Numeric ID of the client to update.
Updated client name.
Updated phone number.
Updated delivery address.
PUT /api/clientes/:id/activo
Enables or disables a client without deleting their record. Inactive clients are excluded from new order creation. No authentication is required.Numeric ID of the client to update.
Pass
true to re-activate the client or false to deactivate them.DELETE /api/clientes/:id
Permanently deletes a client record. Consider usingPUT /api/clientes/:id/activo with activo: false to preserve order history. No authentication is required.
Numeric ID of the client to delete.