Offers
Manage offers related to proposals. Ability to view and update offers.
Available Endpoints
| Method |
Path |
Description |
| GET |
/api/offers/{proposal_id} |
View offer details |
| PUT |
/api/offers/{proposal_id} |
Full update of an offer |
| PATCH |
/api/offers/{proposal_id} |
Partial update of an offer |
Example Request
curl -X GET "https://example.com/api/offers/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 |