GET api/SDInvoiceSolutionCode/GetSummary/{accountId}/{companyId}/{callMasterId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountId | integer |
Required |
|
| companyId | string |
Required |
|
| callMasterId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
SDInvoiceSolutionCodeSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| HoursWorked | SDInvoiceSolutionCodeSummaryBreakup |
None. |
|
| HoursToBill | SDInvoiceSolutionCodeSummaryBreakup |
None. |
Response Formats
application/json, text/json
Sample:
{
"HoursWorked": {
"RegularTime": 1.0,
"OverTime": 2.0,
"DoubleTime": 3.0
},
"HoursToBill": {
"RegularTime": 1.0,
"OverTime": 2.0,
"DoubleTime": 3.0
}
}
application/xml, text/xml
Sample:
<SDInvoiceSolutionCodeSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAWinProV4.Model.DTO.AccountSpecific.SD">
<HoursToBill>
<DoubleTime>3</DoubleTime>
<OverTime>2</OverTime>
<RegularTime>1</RegularTime>
</HoursToBill>
<HoursWorked>
<DoubleTime>3</DoubleTime>
<OverTime>2</OverTime>
<RegularTime>1</RegularTime>
</HoursWorked>
</SDInvoiceSolutionCodeSummary>