POST
/
quotes
{quote_id}
/
reject
curl --request POST \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/quotes{quote_id}/reject \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "feedback": "<string>",
  "reason": "<string>"
}'
{
  "id": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

quote_id
string
required

Unique identifier of the quote to reject

Body

application/json

Request payload for rejecting a quote

Provide reason for rejection to help improve future quotes.

Response

200
application/json

Quote successfully rejected

Response after rejecting a quote

Confirms the quote rejection has been recorded.