POST api/InvoiceAndFinance/GenerateBulkInvoice
Request Information
URI Parameters
None.
Body Parameters
OutstandingInvoiceSearchModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ProviderIds | Collection of ListOfIntegers |
None. |
|
| NumberOfMonths | integer |
None. |
|
| InvoiceStatus | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProviderIds": [
{
"Id": 1
},
{
"Id": 1
}
],
"NumberOfMonths": 1,
"InvoiceStatus": 2
}
text/html
Sample:
{"ProviderIds":[{"Id":1},{"Id":1}],"NumberOfMonths":1,"InvoiceStatus":2}
application/xml, text/xml
Sample:
<OutstandingInvoiceSearchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models">
<InvoiceStatus>2</InvoiceStatus>
<NumberOfMonths>1</NumberOfMonths>
<ProviderIds xmlns:d2p1="http://schemas.datacontract.org/2004/07/ATLAS.Entities">
<d2p1:ListOfIntegers>
<d2p1:Id>1</d2p1:Id>
</d2p1:ListOfIntegers>
<d2p1:ListOfIntegers>
<d2p1:Id>1</d2p1:Id>
</d2p1:ListOfIntegers>
</ProviderIds>
</OutstandingInvoiceSearchModel>
multipart/form-data
Sample:
<OutstandingInvoiceSearchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models"><InvoiceStatus>2</InvoiceStatus><NumberOfMonths>1</NumberOfMonths><ProviderIds xmlns:d2p1="http://schemas.datacontract.org/2004/07/ATLAS.Entities"><d2p1:ListOfIntegers><d2p1:Id>1</d2p1:Id></d2p1:ListOfIntegers><d2p1:ListOfIntegers><d2p1:Id>1</d2p1:Id></d2p1:ListOfIntegers></ProviderIds></OutstandingInvoiceSearchModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |