Update an Estimate Request
PUT/api/estimate-requests/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| id | Number | Estimate Request unique ID |
| estimate_form_id | Number | optional Optional Estimate form ID |
| client_id | Number | optional Optional Client ID |
| assigned_to | Number | optional Optional Assigned to user ID |
| status | String | optional Optional Status |
curl -X PUT "https://yoursite.com/api/estimate-requests/123" \
-H "authtoken: YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "field": "value" }'