GET api/ExpandsAPI
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Expand| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Amount | decimal number |
None. |
|
| Details | string |
None. |
|
| Date | date |
None. |
|
| Branch_Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Amount": 2.1,
"Details": "sample string 3",
"Date": "2025-12-18T00:01:27.6044737-08:00",
"Branch_Id": 5
},
{
"Id": 1,
"Amount": 2.1,
"Details": "sample string 3",
"Date": "2025-12-18T00:01:27.6044737-08:00",
"Branch_Id": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfExpand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POSAPI.Models">
<Expand>
<Amount>2.1</Amount>
<Branch_Id>5</Branch_Id>
<Date>2025-12-18T00:01:27.6044737-08:00</Date>
<Details>sample string 3</Details>
<Id>1</Id>
</Expand>
<Expand>
<Amount>2.1</Amount>
<Branch_Id>5</Branch_Id>
<Date>2025-12-18T00:01:27.6044737-08:00</Date>
<Details>sample string 3</Details>
<Id>1</Id>
</Expand>
</ArrayOfExpand>