GET api/TLocalidad/GetTLocalidadByParams?precio={precio}&evento={evento}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| precio | decimal number | Required | |
| evento | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
TLocalidad| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | integer | None. | |
| Nombre | string | None. | |
| Capacidad | integer | None. | |
| Precio | decimal number | None. | |
| Sala | integer | None. | |
| Evento | integer | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Id": 1,
  "Nombre": "sample string 2",
  "Capacidad": 3,
  "Precio": 4.0,
  "Sala": 5,
  "Evento": 6
}
        application/xml, text/xml
            Sample:
<TLocalidad xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uniqueness.Store.Ticket.API.Models"> <Capacidad>3</Capacidad> <Evento>6</Evento> <Id>1</Id> <Nombre>sample string 2</Nombre> <Precio>4</Precio> <Sala>5</Sala> </TLocalidad>