POST api/PullBilling
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
BillingResponseData| Name | Description | Type | Additional information |
|---|---|---|---|
| InTexts | integer |
None. |
|
| OutTexts | integer |
None. |
|
| TotalInAmount | decimal number |
None. |
|
| TotalOutAmount | decimal number |
None. |
|
| CompanyList | Collection of CompanyModel |
None. |
|
| Error | integer |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"InTexts": 1,
"OutTexts": 2,
"TotalInAmount": 3.1,
"TotalOutAmount": 4.1,
"CompanyList": [
{
"CompanyName": "sample string 1",
"BillAmount": 2.1,
"NumTexts": 3
},
{
"CompanyName": "sample string 1",
"BillAmount": 2.1,
"NumTexts": 3
}
],
"Error": 5,
"ErrorMessage": "sample string 6"
}