v1
latestOpenAPI 3.1.02026-07-263788129.7 KBOpportunities
Update an Opportunity
Updates an existing opportunity by its opportunity_id. Any tags list provided replaces the existing tags on the opportunity.
patch/v1/opportunities/{opportunity_id}
Path parameters
opportunity_idstring uuid required
Request body
Example request
{
"name": "Acme Corp - Enterprise License",
"stage": "negotiation",
"estimated_value": {
"currency_code": "USD",
"amount": 5000000
},
"estimated_close_date": "2025-09-30",
"actual_close_date": "2025-10-15",
"notes": "Follow up after Q3 board meeting"
}Response
Successful Response
Example response
{
"data": {
"id": "opp_abc123",
"account_id": "acc_def456",
"name": "Acme Corp - Enterprise License",
"owner": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"stage": "negotiation",
"estimated_value": {
"currency_code": "USD",
"amount": 5000000
},
"estimated_close_date": "2025-09-30",
"actual_close_date": "2025-10-15",
"summary": "Enterprise deal with strong champion. Procurement review in progress.",
"risks": [
"Budget constraints",
"Competing vendor evaluation"
],
"notes": "Follow up after Q3 board meeting",
"tags": [
"High Priority"
],
"last_activity_at": "2025-08-20T14:30:00Z",
"updated_at": "2025-08-21T14:30:00Z",
"created_at": "2025-06-01T09:00:00Z"
}
}