GET api/getAmountBox/{local}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| local | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Boxing| Name | Description | Type | Additional information |
|---|---|---|---|
| idLocal | integer |
None. |
|
| namelocal | string |
None. |
|
| amount | decimal number |
None. |
|
| entry | decimal number |
None. |
|
| egress | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"idLocal": 1,
"namelocal": "sample string 2",
"amount": 1.1,
"entry": 1.1,
"egress": 1.1
},
{
"idLocal": 1,
"namelocal": "sample string 2",
"amount": 1.1,
"entry": 1.1,
"egress": 1.1
}
]
application/xml, text/xml
Sample:
<ArrayOfBoxing xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Taboo.Models">
<Boxing>
<amount>1.1</amount>
<egress>1.1</egress>
<entry>1.1</entry>
<idLocal>1</idLocal>
<namelocal>sample string 2</namelocal>
</Boxing>
<Boxing>
<amount>1.1</amount>
<egress>1.1</egress>
<entry>1.1</entry>
<idLocal>1</idLocal>
<namelocal>sample string 2</namelocal>
</Boxing>
</ArrayOfBoxing>