POST api/cronograma/generar

Request Information

URI Parameters

None.

Body Parameters

ProyectoConfig
NameDescriptionTypeAdditional information
ProyectoCode

string

None.

NombreProyecto

string

None.

MetodologiaId

integer

None.

TipoEstudioId

integer

None.

BBDD

boolean

None.

DigWeb

boolean

None.

DigTablets

boolean

None.

Papel

boolean

None.

Panel

boolean

None.

Rss

boolean

None.

FechaInicioEstimada

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ProyectoCode": "sample string 1",
  "NombreProyecto": "sample string 2",
  "MetodologiaId": 3,
  "TipoEstudioId": 4,
  "BBDD": true,
  "DigWeb": true,
  "DigTablets": true,
  "Papel": true,
  "Panel": true,
  "Rss": true,
  "FechaInicioEstimada": "2026-05-06T07:01:43.977161-05:00"
}

application/xml, text/xml

Sample:
<ProyectoConfig xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ArellanoAPI.Services">
  <BBDD>true</BBDD>
  <DigTablets>true</DigTablets>
  <DigWeb>true</DigWeb>
  <FechaInicioEstimada>2026-05-06T07:01:43.977161-05:00</FechaInicioEstimada>
  <MetodologiaId>3</MetodologiaId>
  <NombreProyecto>sample string 2</NombreProyecto>
  <Panel>true</Panel>
  <Papel>true</Papel>
  <ProyectoCode>sample string 1</ProyectoCode>
  <Rss>true</Rss>
  <TipoEstudioId>4</TipoEstudioId>
</ProyectoConfig>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseAPI
NameDescriptionTypeAdditional information
Exito

boolean

None.

Mensaje

string

None.

Excepcion

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Exito": true,
  "Mensaje": "sample string 2",
  "Excepcion": "sample string 3",
  "Data": {}
}

application/xml, text/xml

Sample:
<ResponseAPI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ArellanoAPI.Models">
  <Data />
  <Excepcion>sample string 3</Excepcion>
  <Exito>true</Exito>
  <Mensaje>sample string 2</Mensaje>
</ResponseAPI>