POST
/
quotes
{quote_id}
/
confirm
curl --request POST \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/quotes{quote_id}/confirm \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "notes": "<string>",
  "purchase_order_number": "<string>"
}'
{
  "id": "<string>",
  "invoice_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 accept

Body

application/json

Request payload for accepting a quote

Provide optional purchase order information when accepting a quote.

Response

200
application/json

Quote successfully accepted

Response after accepting a quote

Confirms the quote acceptance and provides invoice information if applicable.