Skip to main content
PUT
/
opportunities
/
{id}
/
status
Update Opportunity Status
curl --request PUT \
  --url https://services.leadconnectorhq.com/opportunities/{id}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Version: <version>' \
  --data '
{
  "status": "open",
  "lostReasonId": "CLu7BaljjqrEjBGKTNNe"
}
'
{
  "succeded": true
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-07-28

Path Parameters

id
string
required

Opportunity Id

Example:

"yWQobCRIhRguQtD2llvk"

Body

application/json
status
enum<string>
required
Available options:
open,
won,
lost,
abandoned,
all
lostReasonId
string

lost reason Id

Example:

"CLu7BaljjqrEjBGKTNNe"

Response

Successful response

succeded
boolean
Example:

true

Last modified on March 4, 2026