GET api/AccountSummaryClient/GetAccountFinancialSummaryByAccountID?accountID={accountID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AccountFinancialSummaryPanelVM| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalTime | string |
None. |
|
| CostTimeOnAccount | decimal number |
None. |
|
| CostHostForAccount | decimal number |
None. |
|
| TotalCost | decimal number |
None. |
|
| MaximumExpenditure | decimal number |
None. |
|
| MaximumExpenditureLessCost | decimal number |
None. |
|
| TotalCommission | decimal number |
None. |
|
| TotalCostsToClient | decimal number |
None. |
|
| TotalBillableTimeToClient | decimal number |
None. |
|
| TotalRevenue | decimal number |
None. |
|
| TotalRevenueLessCost | decimal number |
None. |
|
| SummaryPairList | Collection of SummaryPairVM |
None. |
|
| CurrencyCharacter | string |
None. |
|
| CurrencyCode | string |
None. |
|
| Response | IResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalTime": "sample string 1",
"CostTimeOnAccount": 1.0,
"CostHostForAccount": 1.0,
"TotalCost": 1.0,
"MaximumExpenditure": 1.0,
"MaximumExpenditureLessCost": 1.0,
"TotalCommission": 1.0,
"TotalCostsToClient": 1.0,
"TotalBillableTimeToClient": 1.0,
"TotalRevenue": 1.0,
"TotalRevenueLessCost": 1.0,
"SummaryPairList": [
{
"DisplayName": "sample string 1",
"Value": "sample string 2"
},
{
"DisplayName": "sample string 1",
"Value": "sample string 2"
}
],
"CurrencyCharacter": "sample string 2",
"CurrencyCode": "sample string 3",
"Response": null
}
application/xml, text/xml
Sample:
<AccountFinancialSummaryPanelVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.Account.AccountSummary">
<Response i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels" />
<CurrencyCharacter>sample string 2</CurrencyCharacter>
<CurrencyCode>sample string 3</CurrencyCode>
<CostHostForAccount>1</CostHostForAccount>
<CostTimeOnAccount>1</CostTimeOnAccount>
<MaximumExpenditure>1</MaximumExpenditure>
<MaximumExpenditureLessCost>1</MaximumExpenditureLessCost>
<SummaryPairList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.DynamicAccountSummary">
<d2p1:SummaryPairVM>
<d2p1:DisplayName>sample string 1</d2p1:DisplayName>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:SummaryPairVM>
<d2p1:SummaryPairVM>
<d2p1:DisplayName>sample string 1</d2p1:DisplayName>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:SummaryPairVM>
</SummaryPairList>
<TotalBillableTimeToClient>1</TotalBillableTimeToClient>
<TotalCommission>1</TotalCommission>
<TotalCost>1</TotalCost>
<TotalCostsToClient>1</TotalCostsToClient>
<TotalRevenue>1</TotalRevenue>
<TotalRevenueLessCost>1</TotalRevenueLessCost>
<TotalTime>sample string 1</TotalTime>
</AccountFinancialSummaryPanelVM>