POST api/menu

Request Information

URI Parameters

None.

Body Parameters

Platillo
NameDescriptionTypeAdditional information
Id

integer

None.

Nombre

string

None.

Descripcion

string

None.

PrecioBase

decimal number

None.

UrlImagen

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Nombre": "sample string 2",
  "Descripcion": "sample string 3",
  "PrecioBase": 4.0,
  "UrlImagen": "sample string 5"
}

application/xml, text/xml

Sample:
<Platillo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Proyect.FlyWeight.Models">
  <Descripcion>sample string 3</Descripcion>
  <Id>1</Id>
  <Nombre>sample string 2</Nombre>
  <PrecioBase>4</PrecioBase>
  <UrlImagen>sample string 5</UrlImagen>
</Platillo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.