In order to get a request, you will need to issue a GET
request to the following endpoint:
GET https://staging.ap-southeast-2.aws.helloclaims.com/integrations/repairer/requests
Authorization: "Bearer " + access_token
Content-Type: application/json
The endpoint accepts the following query (uri) parameters:
Parameter | Type | Description | Default Value |
---|---|---|---|
top | int | The amount of results to return | 10 |
skip | int | The amount of results to skip | 0 |
This endpoint will respond with an array of pending (non-accepted) requests.
[
{
"id": 1234,
"expiry": ...,
"claim_number": ...,
"instructions": {
...
}
}
]