Estimate (Single)

Manage a specific estimate. Ability to view, create, and update estimate.

Available Endpoints

Method Path Description
GET /api/estimate/{id} View estimate details
POST /api/estimate/{id} Create new estimate
PUT /api/estimate/{id} Full update of estimate
PATCH /api/estimate/{id} Partial update of estimate

Example Request

curl -X GET "https://example.com/api/estimate/1" \
  -H "Authorization: Bearer {token}"

Success Response (200)

{
  "record": {}
}

Errors

Code Description
401 Invalid token
403 Access denied
404 Record not found
422 Validation error
Type to search...