POST api/Claim/Insurance
POST ClaimInsurance. Warning : any Blank value will post as null.
Request Information
URI Parameters
None.
Body Parameters
TClaim| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| xT | Collection of xTable |
None. |
|
| Func | string |
None. |
|
| AcctNo | integer |
None. |
|
| CertId | string |
None. |
|
| Descp | string |
None. |
|
| Remarks | string |
None. |
|
| UserId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"xT": [
{
"Key": "sample string 1",
"Value": "sample string 2",
"Comment": "sample string 3"
},
{
"Key": "sample string 1",
"Value": "sample string 2",
"Comment": "sample string 3"
}
],
"Func": "sample string 2",
"AcctNo": 3,
"CertId": "sample string 4",
"Descp": "sample string 5",
"Remarks": "sample string 6",
"UserId": 7
}
application/xml, text/xml
Sample:
<SQLFunction.TClaim xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTapi20.AppsDAL">
<AcctNo>3</AcctNo>
<CertId>sample string 4</CertId>
<Descp>sample string 5</Descp>
<Func>sample string 2</Func>
<Remarks>sample string 6</Remarks>
<UserId>7</UserId>
<token>sample string 1</token>
<xT>
<SQLFunction.xTable>
<Comment>sample string 3</Comment>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</SQLFunction.xTable>
<SQLFunction.xTable>
<Comment>sample string 3</Comment>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</SQLFunction.xTable>
</xT>
</SQLFunction.TClaim>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |