POST api/PagarVidreoCarrito
Request Information
URI Parameters
None.
Body Parameters
CarritoEntName | Description | Type | Additional information |
---|---|---|---|
IdVidreoCarrito | integer |
None. |
|
IdUsuario | integer |
None. |
|
IdVidreo | integer |
None. |
|
Impuesto | decimal number |
None. |
|
Precio | decimal number |
None. |
|
FechaCarrito | date |
None. |
|
Nombre | string |
None. |
|
FechaPago | date |
None. |
|
PrecioPago | decimal number |
None. |
|
Cantidad | integer |
None. |
|
ImagenComprobante | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "IdVidreoCarrito": 1, "IdUsuario": 2, "IdVidreo": 3, "Impuesto": 4.0, "Precio": 5.0, "FechaCarrito": "2024-11-06T21:23:00.1637476-06:00", "Nombre": "sample string 7", "FechaPago": "2024-11-06T21:23:00.1637476-06:00", "PrecioPago": 9.0, "Cantidad": 10, "ImagenComprobante": "sample string 11" }
application/xml, text/xml
Sample:
<CarritoEnt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LN_API.Entities"> <Cantidad>10</Cantidad> <FechaCarrito>2024-11-06T21:23:00.1637476-06:00</FechaCarrito> <FechaPago>2024-11-06T21:23:00.1637476-06:00</FechaPago> <IdUsuario>2</IdUsuario> <IdVidreo>3</IdVidreo> <IdVidreoCarrito>1</IdVidreoCarrito> <ImagenComprobante>sample string 11</ImagenComprobante> <Impuesto>4</Impuesto> <Nombre>sample string 7</Nombre> <Precio>5</Precio> <PrecioPago>9</PrecioPago> </CarritoEnt>
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.