POST api/eventoSeccionPrecio/guardaTicketsNoNumerados
Guarda los tickets no numerados.
Request Information
URI Parameters
None.
Body Parameters
El objeto ticketsCarroDTO que contiene la información de los tickets.
ticketsCarroDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| eventoId | integer |
None. |
|
| eventoSeccionPrecioId | integer |
None. |
|
| cantidad | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"eventoId": 1,
"eventoSeccionPrecioId": 2,
"cantidad": 3
}
application/xml, text/xml
Sample:
<ticketsCarroDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/desintegra.ticketing.dto"> <cantidad>3</cantidad> <eventoId>1</eventoId> <eventoSeccionPrecioId>2</eventoSeccionPrecioId> </ticketsCarroDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
El resultado de la operación.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.