GET api/Claims/View/{id}
API URL: https://api.alpsltd.co.uk/api/Claims/View/{id}
returns detailed information about a specific claim
Request Information
Authorisation Type
Basic Auth
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
the claim's id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Claim| Name | Description | Type | Additional information |
|---|---|---|---|
| ClaimID |
The claim reference number |
integer | |
| AccidentDate |
The accident date |
date | |
| Broker |
The broker |
string | |
| SourceReference |
The brokers reference for the claim |
string | |
| FeeEarner |
The claim handler |
string | |
| Type_Of_Claim |
The type of claim |
string |
Response Formats
application/json, text/json
Sample:
{
"ClaimID": 1,
"AccidentDate": "2026-05-28T10:58:24.1197349+01:00",
"Broker": "sample string 2",
"SourceReference": "sample string 3",
"FeeEarner": "sample string 4",
"Type_Of_Claim": "sample string 5"
}
application/xml, text/xml
Sample:
<Claim xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <AccidentDate>2026-05-28T10:58:24.1197349+01:00</AccidentDate> <Broker>sample string 2</Broker> <ClaimID>1</ClaimID> <FeeEarner>sample string 4</FeeEarner> <SourceReference>sample string 3</SourceReference> <Type_Of_Claim>sample string 5</Type_Of_Claim> </Claim>