GET api/ActivitySummary?apiKey={apiKey}&fromDate={fromDate}&toDate={toDate}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
apiKey | string |
Required |
|
fromDate | date |
Required |
|
toDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
ActivitySummaryName | Description | Type | Additional information |
---|---|---|---|
Deliveries | integer |
None. |
|
Pickups | integer |
None. |
|
ExpectedCheckIns | integer |
None. |
|
ExpectedCheckOuts | integer |
None. |
|
ExpectedNRMClose | integer |
None. |
|
ExpectedWorkOrderClose | integer |
None. |
|
NewBookings | integer |
None. |
|
OpenQuotations | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "Deliveries": 1, "Pickups": 2, "ExpectedCheckIns": 3, "ExpectedCheckOuts": 4, "ExpectedNRMClose": 5, "ExpectedWorkOrderClose": 6, "NewBookings": 7, "OpenQuotations": 8 }
application/xml, text/xml
Sample:
<ActivitySummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetlet.Service.Areas.AdminApp.Models"> <Deliveries>1</Deliveries> <ExpectedCheckIns>3</ExpectedCheckIns> <ExpectedCheckOuts>4</ExpectedCheckOuts> <ExpectedNRMClose>5</ExpectedNRMClose> <ExpectedWorkOrderClose>6</ExpectedWorkOrderClose> <NewBookings>7</NewBookings> <OpenQuotations>8</OpenQuotations> <Pickups>2</Pickups> </ActivitySummary>