POST v1/api/enrollee/reportADelay
Request Information
URI Parameters
None.
Body Parameters
reportADelayRequestName | Description | Type | Additional information |
---|---|---|---|
enrolleeNo | string |
None. |
|
state | string |
None. |
|
city | string |
None. |
|
provider_id | integer |
None. |
|
comment | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "enrolleeNo": "sample string 1", "state": "sample string 2", "city": "sample string 3", "provider_id": 4, "comment": "sample string 5" }
application/xml, text/xml
Sample:
<reportADelayRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enrrolleeApp.Models.reportADelay"> <city>sample string 3</city> <comment>sample string 5</comment> <enrolleeNo>sample string 1</enrolleeNo> <provider_id>4</provider_id> <state>sample string 2</state> </reportADelayRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"enrolleeNo":"sample string 1","state":"sample string 2","city":"sample string 3","provider_id":4,"comment":"sample string 5"}
Response Information
Resource Description
reportADelayResultName | 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:
<reportADelayResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enrrolleeApp.Models.reportADelay"> <errorMsg>sample string 2</errorMsg> <message>sample string 3</message> <success>true</success> </reportADelayResult>
text/html
Sample:
{"success":true,"errorMsg":"sample string 2","message":"sample string 3"}