Skip to main content

Action: Cancel subscription to calendar

Kartra API: Inbound > Actions. This article is for developers.

The API system will search in your account for the lead subscribed under that specific email, and it will cancel the subscription from the calendar.

Type

Parameters

Values

POST

cmd*

calendar_cancel

POST

calendar_name*

string

POST

class_name*

string

* Required fields

Example

'lead' => [
    'email' => '[email protected]'
],
'actions' => [
    '0' => [
        'cmd' => 'calendar_cancel',
        'calendar_name' => 'First calendar',
        'class_name' => 'First class'
    ]
]

Success message

{
  "status": "Success",
  "message": "Lead unsubscribed from class",
  "type": "113"
}

Error cases

Type Number

Message

Cause

255

Calendar cannot be empty

  • The 'calendar_name' parameter is mandatory and needs to contain data

256

Class cannot be empty

  • The 'class_name' parameter is mandatory and needs to contain data.

257

Calendar does not exist

  • The calendar does not exist in the database or is not completed.

258

Class does not exist

  • The class does not exist in the database or does not belong to the calendar.

259

No active/pending calendar subscription for this lead

  • There is no lead subscribed to the class, so there is nothing to cancel.

Error message example:

{
  "status": "Error",
  "message": "Class does not exist",
  "type": "258"
}
Did this answer your question?