Skip to main content

Endpoint

GET /Ediciones/VerEdiciones?identificador={identificador}

Query Parameters

identificador
string
required
The unique identifier of the edition to retrieve

Request Example

GET /Ediciones/VerEdiciones?identificador=edicion2024

Response

Resultado
boolean
Indicates whether the edition was found
Mensaje
string
A message describing the result of the operation
nombre
string
The name of the edition
folio_inicio
integer
The starting folio number for the edition
Folio_fin
integer
The ending folio number for the edition

Response Examples

{
  "Resultado": true,
  "Mensaje": "Edición encontrada",
  "nombre": "Edición Primavera 2024",
  "folio_inicio": 1000,
  "Folio_fin": 2000
}

Status Codes

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

Source Reference

Controller: EdicionesController.cs:29-81

Build docs developers (and LLMs) love