GET api/SystemApi/GetAllExpands?start={start}&end={end}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
start

date

Required

end

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Expands
NameDescriptionTypeAdditional information
Id

integer

None.

Amount

decimal number

None.

Type

string

None.

Note

string

None.

UserId

integer

None.

Date

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Amount": 2.1,
    "Type": "sample string 3",
    "Note": "sample string 4",
    "UserId": 5,
    "Date": "2025-12-22T13:01:32.7810242-08:00"
  },
  {
    "Id": 1,
    "Amount": 2.1,
    "Type": "sample string 3",
    "Note": "sample string 4",
    "UserId": 5,
    "Date": "2025-12-22T13:01:32.7810242-08:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfExpands xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlsamanodyPosApi.Models">
  <Expands>
    <Amount>2.1</Amount>
    <Date>2025-12-22T13:01:32.7810242-08:00</Date>
    <Id>1</Id>
    <Note>sample string 4</Note>
    <Type>sample string 3</Type>
    <UserId>5</UserId>
  </Expands>
  <Expands>
    <Amount>2.1</Amount>
    <Date>2025-12-22T13:01:32.7810242-08:00</Date>
    <Id>1</Id>
    <Note>sample string 4</Note>
    <Type>sample string 3</Type>
    <UserId>5</UserId>
  </Expands>
</ArrayOfExpands>