Skip to main content

Endpoint

POST /Ediciones/CrearEdicion
Content-Type: application/json

Request Body

nombre
string
required
The name of the edition
folio_inicio
integer
required
The starting folio number for the edition
folio_fin
integer
required
The ending folio number for the edition

Request Example

{
  "nombre": "Edición Primavera 2024",
  "folio_inicio": 1000,
  "folio_fin": 2000
}

Response

result
string
A confirmation message indicating the edition was created successfully

Response Examples

"Edición creada exitosamente"

Status Codes

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

Source Reference

Controller: EdicionesController.cs:13-26

Build docs developers (and LLMs) love