Skip to main content
PUT
/
opportunities
/
{id}
Update opportunity
curl --request PUT \
  --url https://flozy-backend-1042419926531.us-central1.run.app/api/v1/external/opportunities/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "confidence": 90,
  "stage_id": 12
}
'
{
  "http_code": 200,
  "status": "success",
  "message": "Opportunity updated"
}

Authorizations

X-API-Key
string
header
required

Your Flozy API key. Starts with flz_live_.

Path Parameters

id
integer
required

Body

application/json
stage_id
integer
lead_id
integer
value
number
Required range: x >= 0
expected_close_date
string
confidence
integer
Required range: 0 <= x <= 100
note
string | null

Response

Opportunity updated.