Przejdź do treści

Voice Campaign Deleted

Zdarzenie informujące o usunięciu kampanii.

Webhook Configuration Example

"subscriptions": {
    "voice_campaign_deleted": {
        "active": true
    }
}

=== "FILTER"~

```json
"subscriptions": {
    "voice_campaign_deleted": {
        "active": true,
        "filter": {
            "project_id": [1]
        }
    }
}
```

Body

{
    "event_name": <STRING>,
    "event_time": <STRING>,
    "event_type": <STRING>,
    "data": <OBJECT>
}

Parameters

Parametr Rodzaj Opis
event_name <STRING> nazwa danego wydarzenia (działania)
event_time <STRING> data wykonania zdarzenia w UTC w formacie YYYY-MM-DD HH:mm:ss
event_type <STRING> typ wydarzenia
data <OBJECT> Obiekt z identyfikatorem kampanii

Example

{
    "event_name": "voice_campaign_deleted",
    "event_time": "2018-05-01 22:27:12",
    "event_type": "voice_campaign",
    "data": {
        "_id": "5b7c389fe8df7b60af688989",
        "project_id": 1
    }
}