Skip to main content
PUT
/
opportunities
/
{id}
curl -X PUT "https://api.clustr-ai.com/api/public/opportunities/opp_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"status_id": "550e8400-e29b-41d4-a716-446655440001"}'
{
  "success": true,
  "data": {
    "id": "...",
    "status_id": "550e8400-e29b-41d4-a716-446655440001",
    "notes": "",
    "updated_at": "2025-03-15T14:30:00Z"
  }
}
Update an opportunity using the opportunity ID from search results. Use list_opportunity_statuses to get available status IDs.

Path Parameters

id
string
required
Opportunity ID (from search results)

Body

status_id
string
New status UUID — use list opportunity statuses to get available IDs
notes
string
Notes about the opportunity
curl -X PUT "https://api.clustr-ai.com/api/public/opportunities/opp_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"status_id": "550e8400-e29b-41d4-a716-446655440001"}'
{
  "success": true,
  "data": {
    "id": "...",
    "status_id": "550e8400-e29b-41d4-a716-446655440001",
    "notes": "",
    "updated_at": "2025-03-15T14:30:00Z"
  }
}