GET api/Juego/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

FacturaResponseDTO
NameDescriptionTypeAdditional information
VentaId

decimal number

None.

Fecha

date

None.

cliente

string

None.

celular

string

None.

Detalles

Collection of DetalleFacturaResponseDTO

None.

Response Formats

application/json, text/json

Sample:
{
  "VentaId": 1.0,
  "Fecha": "2025-11-08T08:16:40.9900704-05:00",
  "cliente": "sample string 3",
  "celular": "sample string 4",
  "Detalles": [
    {
      "$id": "2",
      "VentaId": 1.0,
      "loteriaAbrev": "sample string 2",
      "numero": "sample string 3",
      "combinado": true,
      "ApuestaNumero": 5.1,
      "ApuestaCombinado": 6.1,
      "Factura": {
        "$ref": "1"
      }
    },
    {
      "$ref": "2"
    }
  ]
}