Skip to main content
GET
/
request
/
get
curl -X GET https://api.example.com/request/get \
  -H "Cookie: token=your-jwt-token"
{
  "result": [
    {
      "id_request": 2,
      "tittle": "CUMPLEAÑOS",
      "description": "QUIERO CELEBRAR MI CUMPLE",
      "name": "JULIAN",
      "email": "[email protected]",
      "phone_number": "3108880996",
      "is_partner": true,
      "pax": 15,
      "init_date": "2025-11-22T11:30:00.000Z",
      "end_date": "2025-11-22T17:30:00.000Z",
      "status": "PENDIENTE",
      "value_aprox": "250000.00",
      "espacio": "Salón Principal",
      "tarifa": "Tarifa Base"
    },
    {
      "id_request": 3,
      "tittle": "BODA",
      "description": "CELEBRACIÓN DE BODA",
      "name": "MARIA LOPEZ",
      "email": "[email protected]",
      "phone_number": "3201234567",
      "is_partner": false,
      "pax": 100,
      "init_date": "2026-01-15T14:00:00.000Z",
      "end_date": "2026-01-15T22:00:00.000Z",
      "status": "EN PROGRESO",
      "value_aprox": "800000.00",
      "espacio": "Salón VIP",
      "tarifa": "Tarifa Premium"
    }
  ]
}
Retrieves the complete list of requests submitted by clients or partners. Includes detailed information such as personal data, event dates, current status, calculated approximate value, selected space, and associated rate.
This endpoint requires authentication via JWT token stored in cookies.

Authentication

JWT authentication tokenExample: "token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

Response

result
array
Array of request objects
curl -X GET https://api.example.com/request/get \
  -H "Cookie: token=your-jwt-token"
{
  "result": [
    {
      "id_request": 2,
      "tittle": "CUMPLEAÑOS",
      "description": "QUIERO CELEBRAR MI CUMPLE",
      "name": "JULIAN",
      "email": "[email protected]",
      "phone_number": "3108880996",
      "is_partner": true,
      "pax": 15,
      "init_date": "2025-11-22T11:30:00.000Z",
      "end_date": "2025-11-22T17:30:00.000Z",
      "status": "PENDIENTE",
      "value_aprox": "250000.00",
      "espacio": "Salón Principal",
      "tarifa": "Tarifa Base"
    },
    {
      "id_request": 3,
      "tittle": "BODA",
      "description": "CELEBRACIÓN DE BODA",
      "name": "MARIA LOPEZ",
      "email": "[email protected]",
      "phone_number": "3201234567",
      "is_partner": false,
      "pax": 100,
      "init_date": "2026-01-15T14:00:00.000Z",
      "end_date": "2026-01-15T22:00:00.000Z",
      "status": "EN PROGRESO",
      "value_aprox": "800000.00",
      "espacio": "Salón VIP",
      "tarifa": "Tarifa Premium"
    }
  ]
}

Build docs developers (and LLMs) love