Create quote request
documentedCreate a quote request.
POST /quoterequestQuote Requestno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.servicetrade.com/api/quote" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Cookie: PHPSESSID={{SERVICETRADE_AUTH_TOKEN}}" \
-d '{"vendorId": {{$vendor_id}}, "locationId": {{$location_id}}, "serviceRequestIds": [{{$service_request_id}}], "name": "{{$quote_name}}", "description": "{{$quote_description}}", "jobType": "{{$job_type}}", "refNumber": "{{$ref_number}}", "expiresOn": {{$expires_on}}, "customerPo": "{{$customer_po}}", "termsId": {{$terms_id}}, "status": "{{$status}}"}'