GET api/BusinessSummary?apiKey={apiKey}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
apiKey | string |
Required |
Body Parameters
None.
Response Information
Resource Description
BusinessSummaryName | Description | Type | Additional information |
---|---|---|---|
RASummary | RASummary |
None. |
|
VehicleUtilization | VehicleUtilization |
None. |
Response Formats
application/json, text/json
Sample:
{ "RASummary": { "DailyAgreements": 1, "WeeklyAgreements": 2, "MonthlyAgreements": 3 }, "VehicleUtilization": { "Available": 1, "OnNRM": 2, "OnWorkOrder": 3, "OnAgreement": 4 } }
application/xml, text/xml
Sample:
<BusinessSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetlet.Service.Areas.AdminApp.Models"> <RASummary> <DailyAgreements>1</DailyAgreements> <MonthlyAgreements>3</MonthlyAgreements> <WeeklyAgreements>2</WeeklyAgreements> </RASummary> <VehicleUtilization> <Available>1</Available> <OnAgreement>4</OnAgreement> <OnNRM>2</OnNRM> <OnWorkOrder>3</OnWorkOrder> </VehicleUtilization> </BusinessSummary>