GET api/chgInvoice/portalSummary/{orderID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of InvoicePortalSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| FieldName | string |
None. |
|
| Rate | decimal number |
None. |
|
| OrderBy | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FieldName": "sample string 1",
"Rate": 2.0,
"OrderBy": 3
},
{
"FieldName": "sample string 1",
"Rate": 2.0,
"OrderBy": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfInvoicePortalSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
<InvoicePortalSummary>
<FieldName>sample string 1</FieldName>
<OrderBy>3</OrderBy>
<Rate>2</Rate>
</InvoicePortalSummary>
<InvoicePortalSummary>
<FieldName>sample string 1</FieldName>
<OrderBy>3</OrderBy>
<Rate>2</Rate>
</InvoicePortalSummary>
</ArrayOfInvoicePortalSummary>