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:
Parameter | Description | Data type | Requirement |
---|---|---|---|
referenceId | Your unique reference for this quote request, IE: Job number, quote number, etc | string | Unique, Required |
bookingDate | If available, the date scheduled for the quotation | Date | Optional |
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",
...
}