Events
Add Connection Details
Add any missing connection details
POST /events-v2/add-connection-details
| Parameter | Type | DataType | Description | 
|---|---|---|---|
| event_id | query | integer | The event ID | 
| webcast_url | query | string | The webcast for the event, if applicable | 
| dial_in_phone_number | query | string | The phone conference for the event, if applicable | 
| dial_in_pin | query | string | A pin number for the event, if applicable | 
Response
{
  "status": "success"
}
Code Samples
Bash
curl --request POST \
  --url 'https://premium.aiera.com/api/events/add-connection-details' \
  --header 'X-API-Key: xxx'
  --data 'event_id=123'
Python
import requests
requests.post(
    "https://premium.aiera.com/api/events/add-connection-details",
    headers={"X-API-Key": "xxx"},
    data={
        "event_id": 123
    }
)