Update an offer
Update pipeline status, value, probability, owner or linked company. Omitted fields are preserved.
Permissions: Offers: read and write.
Behavior and retry rules
An accepted offer always gets weight: 100, including when it is created as accepted. A supplied lower weight is ignored while the offer is accepted. Other statuses preserve the supplied or existing weight. If the status changes concurrently, the update returns 409; read the offer before retrying. Updating an offer does not send an email or add a separate timeline event.
/offers/{id}Authorization
bearerAuth Create a key in Aventra → Innstillinger → API-nøkler.
In: header
Path Parameters
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$uuidRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X PATCH "https://example.com/offers/4d73dca4-7537-4f9c-924e-8bccd354663f" \ -H "Authorization: Bearer $AVENTRA_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "status": "accepted" }'{ "data": { "id": "b84e23dd-9ab0-4df3-bbfd-0fba509cdab8", "title": "CRM onboarding", "description": null, "company_id": "4d73dca4-7537-4f9c-924e-8bccd354663f", "user_id": "f52b3fd3-5ff4-4d93-91c5-6ac79e21cdd5", "status": "accepted", "one_time_revenue": 15000, "recurring_revenue": 2500, "recurring_frequency": "monthly", "weight": 100, "created_at": "2026-09-05T10:00:00Z" }}See authentication, errors and retry guidance.