POST api/ClaimAutomation/SubmitClaim
Request Information
URI Parameters
None.
Body Parameters
ClaimRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PolicyId | globally unique identifier |
None. |
|
| ClaimFormAmount | decimal number |
None. |
|
| ClaimFormPath | string |
None. |
|
| ClaimXml | string |
None. |
|
| InvoiceDocument | string |
None. |
|
| OriginSystem | globally unique identifier |
None. |
|
| Attachments | Collection of string |
None. |
|
| IsPreAuth | boolean |
None. |
|
| IdentifiedVet | globally unique identifier |
None. |
|
| IsAutomation | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"PolicyId": "b62c1a48-528c-4e2c-94f1-cebdc9140b7e",
"ClaimFormAmount": 1.0,
"ClaimFormPath": "sample string 1",
"ClaimXml": "sample string 2",
"InvoiceDocument": "sample string 3",
"OriginSystem": "5285c59e-ef39-4ece-ba05-01ea88347aa5",
"Attachments": [
"sample string 1",
"sample string 2"
],
"IsPreAuth": true,
"IdentifiedVet": "11a1ccc0-6dc5-409e-a114-ced560b04bec",
"IsAutomation": true
}
application/xml, text/xml
Sample:
<ClaimRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tss.Eitr.Customer.Agria.WebApi.Models">
<Attachments xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Attachments>
<ClaimFormAmount>1</ClaimFormAmount>
<ClaimFormPath>sample string 1</ClaimFormPath>
<ClaimXml>sample string 2</ClaimXml>
<IdentifiedVet>11a1ccc0-6dc5-409e-a114-ced560b04bec</IdentifiedVet>
<InvoiceDocument>sample string 3</InvoiceDocument>
<IsAutomation>true</IsAutomation>
<IsPreAuth>true</IsPreAuth>
<OriginSystem>5285c59e-ef39-4ece-ba05-01ea88347aa5</OriginSystem>
<PolicyId>b62c1a48-528c-4e2c-94f1-cebdc9140b7e</PolicyId>
</ClaimRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ClaimResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ClaimId | globally unique identifier |
None. |
|
| ClaimReference | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ClaimId": "91ff268b-b3c9-40cb-9809-6698eb64837f",
"ClaimReference": "sample string 1"
}
application/xml, text/xml
Sample:
<ClaimResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tss.Eitr.Customer.Agria.WebApi.Models"> <ClaimId>91ff268b-b3c9-40cb-9809-6698eb64837f</ClaimId> <ClaimReference>sample string 1</ClaimReference> </ClaimResponse>