POST api/ClaimAutomation/SubmitClaim
Request Information
URI Parameters
None.
Body Parameters
ClaimRequestName | 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": "5c64f3c6-e10e-4ee9-b325-5a5c82718d8d", "ClaimFormAmount": 1.0, "ClaimFormPath": "sample string 1", "ClaimXml": "sample string 2", "InvoiceDocument": "sample string 3", "OriginSystem": "cfe84875-cc36-4093-aef3-dc6e10af9077", "Attachments": [ "sample string 1", "sample string 2" ], "IsPreAuth": true, "IdentifiedVet": "3752c462-f313-4732-8ada-700f4cde7258", "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>3752c462-f313-4732-8ada-700f4cde7258</IdentifiedVet> <InvoiceDocument>sample string 3</InvoiceDocument> <IsAutomation>true</IsAutomation> <IsPreAuth>true</IsPreAuth> <OriginSystem>cfe84875-cc36-4093-aef3-dc6e10af9077</OriginSystem> <PolicyId>5c64f3c6-e10e-4ee9-b325-5a5c82718d8d</PolicyId> </ClaimRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ClaimResponseName | Description | Type | Additional information |
---|---|---|---|
ClaimId | globally unique identifier |
None. |
|
ClaimReference | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ClaimId": "33ae40e0-0bea-4882-a997-31ae776392bf", "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>33ae40e0-0bea-4882-a997-31ae776392bf</ClaimId> <ClaimReference>sample string 1</ClaimReference> </ClaimResponse>