POST v1/api/enrollee/notifyEnrolleeOfClaims
Request Information
URI Parameters
None.
Body Parameters
notifyEnrolleeOfClaimsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| enrolleeNo | string |
None. |
|
| providername | string |
None. |
|
| visitDate | string |
None. |
|
| lineItems | Collection of claaimNotficationLineItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"enrolleeNo": "sample string 1",
"providername": "sample string 2",
"visitDate": "sample string 3",
"lineItems": [
{
"service": "sample string 1",
"qty": 2
},
{
"service": "sample string 1",
"qty": 2
}
]
}
application/xml, text/xml
Sample:
<notifyEnrolleeOfClaimsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enrrolleeApp.Models.notifyEnrolleeOfClaims">
<enrolleeNo>sample string 1</enrolleeNo>
<lineItems>
<claaimNotficationLineItem>
<qty>2</qty>
<service>sample string 1</service>
</claaimNotficationLineItem>
<claaimNotficationLineItem>
<qty>2</qty>
<service>sample string 1</service>
</claaimNotficationLineItem>
</lineItems>
<providername>sample string 2</providername>
<visitDate>sample string 3</visitDate>
</notifyEnrolleeOfClaimsRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"enrolleeNo":"sample string 1","providername":"sample string 2","visitDate":"sample string 3","lineItems":[{"service":"sample string 1","qty":2},{"service":"sample string 1","qty":2}]}
Response Information
Resource Description
notifyEnrolleeOfClaimsResult| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| errorMsg | string |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"errorMsg": "sample string 2",
"message": "sample string 3"
}
application/xml, text/xml
Sample:
<notifyEnrolleeOfClaimsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enrrolleeApp.Models.notifyEnrolleeOfClaims"> <errorMsg>sample string 2</errorMsg> <message>sample string 3</message> <success>true</success> </notifyEnrolleeOfClaimsResult>
text/html
Sample:
{"success":true,"errorMsg":"sample string 2","message":"sample string 3"}