Skip to main content
PUT
/
api
/
Opportunities
/
Close
Bulk close multiple opportunities simultaneously.
curl --request PUT \
  --url https://api.example.com/api/Opportunities/Close \
  --header 'Content-Type: application/json' \
  --data '
{
  "opportunityIds": [
    123
  ],
  "reason": 123,
  "comments": "<string>",
  "stageID": 123
}
'

Body

application/json

Contains the list of opportunity IDs to close, reason for closure, and comments.

opportunityIds
integer<int32>[] | null
reason
integer<int32>
comments
string | null
stageID
integer<int32>

Response

200

OK