Skip to main content

Endpoint

GET /EstadoEntrega/VerEstadoEntrega?identificador={identificador}

Query Parameters

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

Request Example

curl -X GET "https://api.example.com/EstadoEntrega/VerEstadoEntrega?identificador=1" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"

Response

Resultado
boolean
Indicates whether the delivery state was found
Mensaje
string
A message describing the result of the operation
idestadoentrega
integer
The ID of the delivery state
descripcionentrega
string
The description of the delivery state

Response Examples

{
  "Resultado": true,
  "Mensaje": "Estado de entrega encontrado",
  "idestadoentrega": 1,
  "descripcionentrega": "En Tránsito"
}

Status Codes

  • 200 OK - Delivery state found and returned successfully
  • 400 Bad Request - Invalid request or missing identifier
  • 404 Not Found - Delivery state not found

Source Reference

Controller: EstadoEntregaController.cs:31-81

See Also

Create Delivery State

Create a new delivery state

Cash Delivery

Track cash delivery with states

Build docs developers (and LLMs) love