PUT api/menu/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
PlatilloName | Description | Type | Additional 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
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.