Events

Add Connection Details

Add any missing connection details


POST /events-v2/add-connection-details

ParameterTypeDataTypeDescription
event_idqueryintegerThe event ID
webcast_urlquerystringThe webcast for the event, if applicable
dial_in_phone_numberquerystringThe phone conference for the event, if applicable
dial_in_pinquerystringA 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
    }
)
Previous
Report Event Issue