POST api/Center/GenerateMonthlyBillNew/{empid}/{reftype}/{month}/{year}/{billtype}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| empid | string |
Required |
|
| reftype | string |
Required |
|
| month | string |
Required |
|
| year | string |
Required |
|
| billtype | string |
Required |
Body Parameters
Collection of GenerateBillingBodyNew| Name | Description | Type | Additional information |
|---|---|---|---|
| city | string |
None. |
|
| refid | string |
None. |
|
| refname | string |
None. |
|
| reftype | string |
None. |
|
| sctype | string |
None. |
|
| invoiceType | string |
None. |
|
| totalEnroll | integer |
None. |
|
| billAmount | decimal number |
None. |
|
| stmonth | string |
None. |
|
| styear | string |
None. |
|
| endmonth | string |
None. |
|
| endyear | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"city": "sample string 1",
"refid": "sample string 2",
"refname": "sample string 3",
"reftype": "sample string 4",
"sctype": "sample string 5",
"invoiceType": "sample string 6",
"totalEnroll": 7,
"billAmount": 8.1,
"stmonth": "sample string 9",
"styear": "sample string 10",
"endmonth": "sample string 11",
"endyear": "sample string 12"
},
{
"city": "sample string 1",
"refid": "sample string 2",
"refname": "sample string 3",
"reftype": "sample string 4",
"sctype": "sample string 5",
"invoiceType": "sample string 6",
"totalEnroll": 7,
"billAmount": 8.1,
"stmonth": "sample string 9",
"styear": "sample string 10",
"endmonth": "sample string 11",
"endyear": "sample string 12"
}
]
application/xml, text/xml
Sample:
<ArrayOfGenerateBillingBodyNew xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
<GenerateBillingBodyNew>
<billAmount>8.1</billAmount>
<city>sample string 1</city>
<endmonth>sample string 11</endmonth>
<endyear>sample string 12</endyear>
<invoiceType>sample string 6</invoiceType>
<refid>sample string 2</refid>
<refname>sample string 3</refname>
<reftype>sample string 4</reftype>
<sctype>sample string 5</sctype>
<stmonth>sample string 9</stmonth>
<styear>sample string 10</styear>
<totalEnroll>7</totalEnroll>
</GenerateBillingBodyNew>
<GenerateBillingBodyNew>
<billAmount>8.1</billAmount>
<city>sample string 1</city>
<endmonth>sample string 11</endmonth>
<endyear>sample string 12</endyear>
<invoiceType>sample string 6</invoiceType>
<refid>sample string 2</refid>
<refname>sample string 3</refname>
<reftype>sample string 4</reftype>
<sctype>sample string 5</sctype>
<stmonth>sample string 9</stmonth>
<styear>sample string 10</styear>
<totalEnroll>7</totalEnroll>
</GenerateBillingBodyNew>
</ArrayOfGenerateBillingBodyNew>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>