Skip to main content

Endpoint

POST /VerEntregaEfectivo?identificador={identificador}

Query Parameters

identificador
string
required
The unique identifier of the cash delivery to retrieve

Request Example

POST /VerEntregaEfectivo?identificador=entrega123

Response

Resultado
boolean
Indicates whether the cash delivery was found
Mensaje
string
A message describing the result of the operation
iddonacion
integer
The ID of the donation
idedicion
integer
The ID of the edition
idtalon
integer
The ID of the voucher (talon)
idmisionero
integer
The ID of the missionary
idestadoentrega
integer
The ID of the delivery state

Response Examples

{
  "Resultado": true,
  "Mensaje": "Entrega de efectivo encontrada",
  "iddonacion": 5,
  "idedicion": 2,
  "idtalon": 123,
  "idmisionero": 10,
  "idestadoentrega": 1
}

Status Codes

  • 200 OK - Cash delivery found and returned successfully
  • 400 Bad Request - Invalid request, missing identifier, or service error
  • 404 Not Found - Cash delivery not found or no data available

Source Reference

Controller: EntregaEfectivoController.cs:28-83

Build docs developers (and LLMs) love