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": "f2182985-87a8-4887-81f6-7fd3de3b9cc8",
"ClaimFormAmount": 1.0,
"ClaimFormPath": "sample string 1",
"ClaimXml": "sample string 2",
"InvoiceDocument": "sample string 3",
"OriginSystem": "e87b1f72-dee1-4c94-b77a-0ad282039ff5",
"Attachments": [
"sample string 1",
"sample string 2"
],
"IsPreAuth": true,
"IdentifiedVet": "39eebaf3-1919-44aa-8dcf-fc4d3e71d511",
"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>39eebaf3-1919-44aa-8dcf-fc4d3e71d511</IdentifiedVet>
<InvoiceDocument>sample string 3</InvoiceDocument>
<IsAutomation>true</IsAutomation>
<IsPreAuth>true</IsPreAuth>
<OriginSystem>e87b1f72-dee1-4c94-b77a-0ad282039ff5</OriginSystem>
<PolicyId>f2182985-87a8-4887-81f6-7fd3de3b9cc8</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": "aaa2654c-8b37-41e5-9006-0eb270dde365",
"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>aaa2654c-8b37-41e5-9006-0eb270dde365</ClaimId> <ClaimReference>sample string 1</ClaimReference> </ClaimResponse>