logo

Accepting a Request

1 min read

You can accept the request by sending a POST request to the following endpoint, using the {id} parameter as the value of the id of the request.

https://staging.ap-southeast-2.aws.helloclaims.com/integrations/repairer/requests/{id}

You will need to provide any required parameters along with this request:

ParameterDescriptionData typeRequirement
referenceIdYour unique reference for this quote request, IE: Job number, quote number, etcstringUnique, Required
bookingDateIf available, the date scheduled for the quotationDateOptional

Your unique reference should be unique. If you try and accept more than one quotation with the same unique reference, you will get an error.

You will receive back a response with a location header confirming the acceptance of the request, which can then be used to interact with the job:

POST https://staging.ap-southeast-2.aws.helloclaims.com/integrations/repairer/requests/{id}
201 CREATED
Location: https://staging.ap-southeast-2.aws.helloclaims.com/integrations/repairer/jobs/{id}
Content-Type: application/json

This response will contain the created job's details:

{
    "id": "TEST",
    ...
}