Skip to main content
POST
/
Donacion
/
VerDonaciones
View Donation
curl --request POST \
  --url https://api.example.com/Donacion/VerDonaciones
{
  "200": {},
  "400": {},
  "404": {},
  "Resultado": true,
  "Mensaje": "<string>",
  "idmisionero": 123,
  "idtalon": 123,
  "iddonante": 123,
  "idclave": 123,
  "idestado": 123,
  "idestadoentrega": 123
}
Retrieves donation information by identifier. This endpoint accepts an identifier as a query parameter and returns detailed donation data if found.

Query Parameters

identificador
string
required
The unique identifier to search for the donation. This parameter is required and cannot be empty.

Response

When a donation is found, the endpoint returns the following fields:
Resultado
boolean
Indicates whether the donation was found successfully
Mensaje
string
A message describing the result of the operation
idmisionero
integer
The unique identifier of the missionary associated with the donation
idtalon
integer
The unique identifier of the receipt (talon) for the donation
iddonante
integer
The unique identifier of the donor who made the donation
idclave
integer
The donation key/code identifier
idestado
integer
The status identifier for the donation
idestadoentrega
integer
The delivery status identifier for the donation

Status Codes

200
Success
Returns the donation object with all related information
400
Bad Request
Returns an error message if:
  • The identifier parameter is not provided or is empty
  • No response was obtained from the server
  • An error occurred during the search process
404
Not Found
Returns a not found response if:
  • No data was found for the provided identifier
  • The donation search returned no results

Example Request

curl -X POST "https://api.donasf.com/Donacion/VerDonaciones?identificador=ABC123" \
  -H "Content-Type: application/json"

Build docs developers (and LLMs) love