GET api/caja/Estado/{numeroCaja}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| numeroCaja | string |
Required |
Body Parameters
None.
Response Information
Resource Description
CajaEstadoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Descripcion | string |
None. |
|
| Abierto | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Descripcion": "sample string 2",
"Abierto": true
}
application/xml, text/xml
Sample:
<CajaEstadoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HouseCore.ViewModels.Response"> <Abierto>true</Abierto> <Descripcion>sample string 2</Descripcion> <Id>1</Id> </CajaEstadoResponse>