POST api/faqs/setOrdenFaqCategoria

Request Information

URI Parameters

None.

Body Parameters

OrdenFaqCategoriaRequest
NameDescriptionTypeAdditional information
IdCategoriaFaq

integer

None.

IdFaq

integer

None.

Orden

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "IdCategoriaFaq": 1,
  "IdFaq": 1,
  "Orden": 1
}

application/xml, text/xml

Sample:
<OrdenFaqCategoriaRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Core.Models.Faqs">
  <IdCategoriaFaq>1</IdCategoriaFaq>
  <IdFaq>1</IdFaq>
  <Orden>1</Orden>
</OrdenFaqCategoriaRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'OrdenFaqCategoriaRequest'.

Response Information

Resource Description

ConfirmacionResponse
NameDescriptionTypeAdditional information
Correcto

boolean

None.

Mensaje

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Correcto": true,
  "Mensaje": "sample string 2"
}

application/xml, text/xml

Sample:
<ConfirmacionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Core.Models.Genericos">
  <Correcto>true</Correcto>
  <Mensaje>sample string 2</Mensaje>
</ConfirmacionResponse>