Skip to main content
PUT
/
v1
/
outcomes
Update Call Outcome (no sale reason or objection)
curl --request PUT \
  --url http://localhost:4000/v1/outcomes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "eventCallId": 123,
  "noSaleReason": "FOLLOW_UP_SCHEDULE",
  "objection": "MONEY"
}
'
{
  "data": {
    "task": {
      "id": 123,
      "noSaleReason": "<string>",
      "objection": "<string>",
      "updatedAt": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

API key required in Authorization header. Format: iclosed-<token>

Body

application/json
eventCallId
integer
required
noSaleReason
enum<string> | null
Available options:
FOLLOW_UP_SCHEDULE,
UNQUALIFIED,
NO_SHOW,
CONTACT_CANCELLED,
ADMIN_CANCELLED,
NOT_INTERESTED,
BAD_FIT,
OTHER
objection
enum<string> | null
Available options:
MONEY,
LOGISTIC,
PARTNER,
FEAR,
SMOKE_SCREEN,
NO_OBJECTION

Response

Task outcome updated successfully

data
object
required