Skip to main content

Endpoint

POST /CrearEntregaEfectivo
Content-Type: application/json

Request Body

iddonacion
integer
required
The ID of the donation
idedicion
integer
required
The ID of the edition
idtalon
integer
required
The ID of the voucher (talon)
idmisionero
integer
required
The ID of the missionary
idestadoentrega
integer
required
The ID of the delivery state

Request Example

{
  "iddonacion": 5,
  "idedicion": 2,
  "idtalon": 123,
  "idmisionero": 10,
  "idestadoentrega": 1
}

Response

result
string
A confirmation message indicating the cash delivery was created successfully

Response Examples

"Entrega de efectivo creada exitosamente"

Status Codes

  • 200 OK - Cash delivery created successfully
  • 400 Bad Request - Invalid request data or creation failed

Source Reference

Controller: EntregaEfectivoController.cs:11-24

Build docs developers (and LLMs) love