Documentacion API - Vencimiento
Esta documentación cubre los puntos finales para la gestión de vencimiento.
1. Actualizar vencimiento
Endpoint: PATCH /maturity/:id
Description:Actualiza los datos de vencimiento asociados a un locker específico.
Request Headers:
- Authorization: Bearer token
Request Parameters:
- id: The ID of the maturity record to update.
Request Body:
{
"days": "number" // Number of days to update the maturity value
}
Response:
{
"id": "string", // ID of the updated maturity record
"updatedValue": "number" // Updated maturity days value
}