Update payment to mark as final or add notes
cURL
curl --request PATCH \ --url https://api.example.com/api/v1/ticket-payments/:id \ --header 'Content-Type: application/json' \ --data ' { "isFinal": true, "notes": "<string>" } '
{ "id": "<string>", "isFinal": true, "notes": "<string>", "updatedAt": "<string>" }
200
400
403
404
{ "isFinal": true, "notes": "Pago completado - saldo restante cancelado" }
{ "success": true, "data": { "id": "7c9e6679-7425-40de-944b-e07fc1f90ae7", "ticketId": "550e8400-e29b-41d4-a716-446655440000", "amountPaid": 30000, "isFinal": true, "notes": "Pago completado - saldo restante cancelado", "updatedAt": "2024-03-15T11:30:00.000Z" } }