logo

Getting Requests

1 min read

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:

ParameterTypeDescriptionDefault Value
topintThe amount of results to return10
skipintThe amount of results to skip0

This endpoint will respond with an array of pending (non-accepted) requests.

[
  {
    "id": 1234,
    "expiry": ...,
    "claim_number": ...,
    "instructions": {
      ...
    }
  }
]