Transportnondrivablecars Agent/API Examples
These examples point agents to the canonical quote host at https://quoting.transportnondrivablecars.com.au/. Use the live OpenAPI schema and capability manifest before submitting production requests.
Household Quote
curl -X POST https://quoting.transportnondrivablecars.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"},"move":{"pickup":{"suburb":"Sydney","state":"NSW"},"delivery":{"suburb":"Brisbane","state":"QLD"},"inventory":{"method":"m3","cubic_meters":20}}}' Vehicle Quote
curl -X POST https://quoting.transportnondrivablecars.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"},"vehicle":{"make":"Toyota","model":"Corolla","drivable":true},"route":{"pickup":{"suburb":"Melbourne","state":"VIC"},"delivery":{"suburb":"Perth","state":"WA"}}}' Callback Request
curl -X POST https://quoting.transportnondrivablecars.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"},"message":"Please call me about my move."}'