POST api/Boletos/Disponibles
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| parametros | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"p_id_sorteo": 1,
"p_preferencia": 2,
"p_digitos": "sample string 3",
"p_resultados": 4,
"p_descartar_boletos": "sample string 5"
}
application/xml, text/xml
Sample:
<BoletosSeleccionParametros xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SorteosAPI.Models.PCK_BOLETOS"> <p_descartar_boletos>sample string 5</p_descartar_boletos> <p_digitos>sample string 3</p_digitos> <p_id_sorteo>1</p_id_sorteo> <p_preferencia>2</p_preferencia> <p_resultados>4</p_resultados> </BoletosSeleccionParametros>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
[
{
"ID_BOLETO": 1,
"NUMERO_BOLETO": "sample string 2"
},
{
"ID_BOLETO": 1,
"NUMERO_BOLETO": "sample string 2"
},
{
"ID_BOLETO": 1,
"NUMERO_BOLETO": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfBoletosModelo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SorteosAPI.Models.PCK_BOLETOS">
<BoletosModelo>
<ID_BOLETO>1</ID_BOLETO>
<NUMERO_BOLETO>sample string 2</NUMERO_BOLETO>
</BoletosModelo>
<BoletosModelo>
<ID_BOLETO>1</ID_BOLETO>
<NUMERO_BOLETO>sample string 2</NUMERO_BOLETO>
</BoletosModelo>
<BoletosModelo>
<ID_BOLETO>1</ID_BOLETO>
<NUMERO_BOLETO>sample string 2</NUMERO_BOLETO>
</BoletosModelo>
</ArrayOfBoletosModelo>