POST api/Center/GenerateMonthlyBill/{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 GenerateBillingBodyName | 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. |
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 }, { "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 } ]
application/xml, text/xml
Sample:
<ArrayOfGenerateBillingBody xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models"> <GenerateBillingBody> <billAmount>8.1</billAmount> <city>sample string 1</city> <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> <totalEnroll>7</totalEnroll> </GenerateBillingBody> <GenerateBillingBody> <billAmount>8.1</billAmount> <city>sample string 1</city> <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> <totalEnroll>7</totalEnroll> </GenerateBillingBody> </ArrayOfGenerateBillingBody>
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>