POST api/Claim/GetClaimList
Get all claims as list, by entity id
Request Information
URI Parameters
None.
Body Parameters
ClaimListRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ClaimType | integer |
None. |
|
| SelectParams | integer |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClaimType": 1,
"SelectParams": 1,
"PageNumber": 2,
"PageSize": 3
}
application/xml, text/xml
Sample:
<ClaimListRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.MemberPortal.API.Models"> <ClaimType>1</ClaimType> <PageNumber>2</PageNumber> <PageSize>3</PageSize> <SelectParams>1</SelectParams> </ClaimListRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ClaimListResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ClaimId | integer |
None. |
|
| Status | ClaimStatus |
None. |
|
| MemberName | string |
None. |
|
| ClaimType | ClaimType |
None. |
|
| SubmittedDate | date |
None. |
|
| SourceReferenceNumber | string |
None. |
|
| EntityId | integer |
None. |
|
| IndividualId | string |
None. |
|
| Count | integer |
None. |
|
| IsEditable | boolean |
None. |
|
| StatusDefinition | string |
None. |
|
| CreatedBy | integer |
None. |
|
| Amount | string |
None. |
|
| Currency | string |
None. |
|
| UpdatedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ClaimId": 1,
"Status": 0,
"MemberName": "sample string 2",
"ClaimType": 1,
"SubmittedDate": "2025-11-01T17:19:29.1169272-07:00",
"SourceReferenceNumber": "sample string 4",
"EntityId": 5,
"IndividualId": "sample string 6",
"Count": 7,
"IsEditable": true,
"StatusDefinition": "InProgress",
"CreatedBy": 1,
"Amount": "sample string 10",
"Currency": "sample string 11",
"UpdatedDate": "2025-11-01T17:19:29.1169272-07:00"
},
{
"ClaimId": 1,
"Status": 0,
"MemberName": "sample string 2",
"ClaimType": 1,
"SubmittedDate": "2025-11-01T17:19:29.1169272-07:00",
"SourceReferenceNumber": "sample string 4",
"EntityId": 5,
"IndividualId": "sample string 6",
"Count": 7,
"IsEditable": true,
"StatusDefinition": "InProgress",
"CreatedBy": 1,
"Amount": "sample string 10",
"Currency": "sample string 11",
"UpdatedDate": "2025-11-01T17:19:29.1169272-07:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfClaimListResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.MemberPortal.API.Models">
<ClaimListResponseModel>
<Amount>sample string 10</Amount>
<ClaimId>1</ClaimId>
<ClaimType>Health</ClaimType>
<Count>7</Count>
<CreatedBy>1</CreatedBy>
<Currency>sample string 11</Currency>
<EntityId>5</EntityId>
<IndividualId>sample string 6</IndividualId>
<IsEditable>true</IsEditable>
<MemberName>sample string 2</MemberName>
<SourceReferenceNumber>sample string 4</SourceReferenceNumber>
<Status>InProgress</Status>
<StatusDefinition>InProgress</StatusDefinition>
<SubmittedDate>2025-11-01T17:19:29.1169272-07:00</SubmittedDate>
<UpdatedDate>2025-11-01T17:19:29.1169272-07:00</UpdatedDate>
</ClaimListResponseModel>
<ClaimListResponseModel>
<Amount>sample string 10</Amount>
<ClaimId>1</ClaimId>
<ClaimType>Health</ClaimType>
<Count>7</Count>
<CreatedBy>1</CreatedBy>
<Currency>sample string 11</Currency>
<EntityId>5</EntityId>
<IndividualId>sample string 6</IndividualId>
<IsEditable>true</IsEditable>
<MemberName>sample string 2</MemberName>
<SourceReferenceNumber>sample string 4</SourceReferenceNumber>
<Status>InProgress</Status>
<StatusDefinition>InProgress</StatusDefinition>
<SubmittedDate>2025-11-01T17:19:29.1169272-07:00</SubmittedDate>
<UpdatedDate>2025-11-01T17:19:29.1169272-07:00</UpdatedDate>
</ClaimListResponseModel>
</ArrayOfClaimListResponseModel>