Moving Cars Agent/API Examples
Use the live OpenAPI schema and capability manifest on https://quoting.movingcars.com.au/ before submitting production requests.
Household Quote
curl -X POST https://quoting.movingcars.com.au/api/v1/household-quotes/assistant/submit \
-H 'Content-Type: application/json' \
-d '{"customer_consent":{"confirmed":true},"customer":{"name":"Example Customer","email":"customer@example.com","phone":"0400000000"}}'Vehicle Quote
curl -X POST https://quoting.movingcars.com.au/api/v1/vehicle-quotes/assistant/submit \
-H 'Content-Type: application/json' \
-d '{"customer_consent":{"confirmed":true},"customer":{"name":"Example Customer","email":"customer@example.com","phone":"0400000000"}}'Callback Request
curl -X POST https://quoting.movingcars.com.au/api/v1/callbacks/assistant/request \
-H 'Content-Type: application/json' \
-d '{"customer_consent":{"confirmed":true},"customer":{"name":"Example Customer","email":"customer@example.com","phone":"0400000000"}}'