Suppliers (proveedores) represent the external vendors and individuals from whom your organization receives goods. Every supplier record stores basic contact identification that is referenced when raising a Control Perceptivo warehouse receipt. You can manage all suppliers at theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/EricMartinez758/corpointa-frontend/llms.txt
Use this file to discover all available pages before exploring further.
/proveedores route.
Data Model
Each supplier record contains the following fields:| Field | Type | Constraints | Description |
|---|---|---|---|
id_proveedor | integer | Primary key, auto-generated | Unique numeric identifier for the supplier |
nombre | string | Required, max 100 chars | Full legal name of the vendor or individual |
rif_o_cedula | string | Required, max 30 chars | Venezuelan business tax ID (RIF) or individual national ID (cédula) |
telefono | string | Required, max 30 chars | Primary contact phone number |
RIF vs. Cédula — A RIF (Registro de Información Fiscal) is Venezuela’s business tax identification number, assigned to companies and self-employed professionals. A cédula is the individual national identity number. Corpointa accepts either in the
rif_o_cedula field; the field label makes this explicit in the UI.Features
Searchable Table
The suppliers list is fully searchable and column-filterable. Type in the global search bar or use per-column filters to narrow results by name or tax ID.
Inline Create Dialog
Click New Supplier to open a modal dialog with validated form fields. All three required fields must pass validation before the record is saved.
Inline Edit Dialog
Click the edit action on any row to open the same form pre-populated with the supplier’s current data. Changes are submitted with a
PUT request.Delete Confirmation
Deleting a supplier triggers a confirmation dialog to prevent accidental removal. Suppliers referenced by existing warehouse receipts should be reviewed before deletion.
API Reference
All endpoints operate on the/proveedores resource and return or accept JSON.
List Suppliers
Returns an array of all supplier records.Response
Get Single Supplier
Returns a single supplier by its
id_proveedor.Create Supplier
Creates a new supplier record. The
id_proveedor is assigned by the server.Update Supplier
Updates an existing supplier. Send the full set of writable fields.
Field Validation
Full legal name of the vendor. Must be between 1 and 100 characters.
Venezuelan RIF (businesses) or cédula (individuals). Must be between 1 and 30 characters. Include the document prefix in your data, e.g.
J-30456789-0 or V-12345678.Contact phone number. Must be between 1 and 30 characters. Any format is accepted.