GET api/RepportController/Depenses?start={start}&end={end}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| start | date |
Required |
|
| end | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Depense| Name | Description | Type | Additional information |
|---|---|---|---|
| Montant | decimal number |
None. |
|
| Lieux | string |
None. |
|
| Motif | string |
None. |
|
| ID | string |
Required String length: inclusive between 0 and 100 |
|
| IdUser | string |
String length: inclusive between 0 and 100 |
|
| DateEntityCreation | date |
None. |
|
| DateEntityUpdate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Montant": 1.1,
"Lieux": "sample string 2",
"Motif": "sample string 3",
"ID": "sample string 4",
"IdUser": "sample string 5",
"DateEntityCreation": "2025-11-03T16:48:13.2793367-06:00",
"DateEntityUpdate": "2025-11-03T16:48:13.2793367-06:00"
},
{
"Montant": 1.1,
"Lieux": "sample string 2",
"Motif": "sample string 3",
"ID": "sample string 4",
"IdUser": "sample string 5",
"DateEntityCreation": "2025-11-03T16:48:13.2793367-06:00",
"DateEntityUpdate": "2025-11-03T16:48:13.2793367-06:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfDepense xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MapendoAerien.Model">
<Depense>
<DateEntityCreation>2025-11-03T16:48:13.2793367-06:00</DateEntityCreation>
<DateEntityUpdate>2025-11-03T16:48:13.2793367-06:00</DateEntityUpdate>
<ID>sample string 4</ID>
<IdUser>sample string 5</IdUser>
<Lieux>sample string 2</Lieux>
<Montant>1.1</Montant>
<Motif>sample string 3</Motif>
</Depense>
<Depense>
<DateEntityCreation>2025-11-03T16:48:13.2793367-06:00</DateEntityCreation>
<DateEntityUpdate>2025-11-03T16:48:13.2793367-06:00</DateEntityUpdate>
<ID>sample string 4</ID>
<IdUser>sample string 5</IdUser>
<Lieux>sample string 2</Lieux>
<Montant>1.1</Montant>
<Motif>sample string 3</Motif>
</Depense>
</ArrayOfDepense>