Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/AndresLopezCorrales/Goods-Inventory/llms.txt

Use this file to discover all available pages before exploring further.

The admin dashboard provides two search endpoints — one for searching responsible persons and one for searching locations — both requiring a valid JWT token.

GET /api/admin/responsables/buscar

Search for responsible persons by partial name match.
  • Method: GET
  • Path: /api/admin/responsables/buscar
  • Auth: Bearer JWT

Query Parameters

q
string
required
Partial name to search for. An empty string returns an empty array [].

Request Example

curl "http://localhost:5000/api/admin/responsables/buscar?q=Lopez" \
  -H "Authorization: Bearer <token>"

Response (200)

Returns an array of matching responsible-person objects.
[{ "id": 1, "name": "Lopez Corrales Andres" }]
id
integer
Primary key of the responsible person.
name
string
Full name of the responsible person.

Build docs developers (and LLMs) love