POST api/WebApi?refno={refno}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| refno | globally unique identifier |
Required |
Body Parameters
tblPfChargesVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| fktblClaimsRefNo | globally unique identifier |
None. |
|
| pDoctorAccreCode | string |
None. |
|
| pDoctorLastName | string |
None. |
|
| pDoctorFirstName | string |
None. |
|
| pDoctorMiddleName | string |
None. |
|
| pDoctorSuffix | string |
None. |
|
| pWithCoPay | string |
None. |
|
| pDoctorCoPay | string |
None. |
|
| pDoctorSignDate | string |
None. |
|
| pDoctorSignDateStr | string |
None. |
|
| pChargesNetOfApplicableVat | decimal number |
None. |
|
| pSeniorCitizenDiscount | decimal number |
None. |
|
| pPWDDiscount | decimal number |
None. |
|
| pPCSO | decimal number |
None. |
|
| pDSWD | decimal number |
None. |
|
| pDOHMAP | decimal number |
None. |
|
| pHMO | decimal number |
None. |
|
| Phic | decimal number |
None. |
|
| OthDiscount | decimal number |
None. |
|
| OtherFundSourceAmount | decimal number |
None. |
|
| OtherFundSourceDescription | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"fktblClaimsRefNo": "60c4b0a3-b783-43dc-84d5-5d1cafd8bd75",
"pDoctorAccreCode": "sample string 3",
"pDoctorLastName": "sample string 4",
"pDoctorFirstName": "sample string 5",
"pDoctorMiddleName": "sample string 6",
"pDoctorSuffix": "sample string 7",
"pWithCoPay": "sample string 8",
"pDoctorCoPay": "sample string 9",
"pDoctorSignDate": "sample string 10",
"pDoctorSignDateStr": "sample string 11",
"pChargesNetOfApplicableVat": 12.0,
"pSeniorCitizenDiscount": 13.0,
"pPWDDiscount": 14.0,
"pPCSO": 15.0,
"pDSWD": 16.0,
"pDOHMAP": 17.0,
"pHMO": 18.0,
"Phic": 19.0,
"OthDiscount": 20.0,
"OtherFundSourceAmount": 21.0,
"OtherFundSourceDescription": "sample string 22"
}
application/xml, text/xml
Sample:
<TransactionViewModels.tblPfChargesVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClaimsAssureApi.Models"> <Id>1</Id> <OthDiscount>20</OthDiscount> <OtherFundSourceAmount>21</OtherFundSourceAmount> <OtherFundSourceDescription>sample string 22</OtherFundSourceDescription> <Phic>19</Phic> <fktblClaimsRefNo>60c4b0a3-b783-43dc-84d5-5d1cafd8bd75</fktblClaimsRefNo> <pChargesNetOfApplicableVat>12</pChargesNetOfApplicableVat> <pDOHMAP>17</pDOHMAP> <pDSWD>16</pDSWD> <pDoctorAccreCode>sample string 3</pDoctorAccreCode> <pDoctorCoPay>sample string 9</pDoctorCoPay> <pDoctorFirstName>sample string 5</pDoctorFirstName> <pDoctorLastName>sample string 4</pDoctorLastName> <pDoctorMiddleName>sample string 6</pDoctorMiddleName> <pDoctorSignDate>sample string 10</pDoctorSignDate> <pDoctorSignDateStr>sample string 11</pDoctorSignDateStr> <pDoctorSuffix>sample string 7</pDoctorSuffix> <pHMO>18</pHMO> <pPCSO>15</pPCSO> <pPWDDiscount>14</pPWDDiscount> <pSeniorCitizenDiscount>13</pSeniorCitizenDiscount> <pWithCoPay>sample string 8</pWithCoPay> </TransactionViewModels.tblPfChargesVm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TransactionStatVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| OtherParam | string |
None. |
|
| lst | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 1,
"Message": "sample string 2",
"OtherParam": "sample string 3",
"lst": {}
}
application/xml, text/xml
Sample:
<TransactionViewModels.TransactionStatVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClaimsAssureApi.Models"> <Message>sample string 2</Message> <OtherParam>sample string 3</OtherParam> <Status>1</Status> <lst /> </TransactionViewModels.TransactionStatVm>