POST
/
online_conferences
curl --request POST \
  --url https://{primary_domain}/api/public/v2.0/online_conferences \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key-Id: <api-key>' \
  --header 'X-Access-Key-Secret: <api-key>' \
  --data '{
  "online_conference_account_id": 123,
  "backer_event_id": 123,
  "public_id": "<string>",
  "title": "<string>",
  "is_public": true,
  "online_conference_attendees": [
    {
      "name": "<string>",
      "email": "jsmith@example.com"
    }
  ]
}'
{
  "message": "<string>",
  "data": {
    "id": 123,
    "online_conference_account_id": 123,
    "backer_event_id": 123,
    "public_id": "<string>",
    "title": "<string>",
    "is_public": true,
    "is_occurred": true,
    "started_at": "2023-11-07T05:31:56Z",
    "ended_at": "2023-11-07T05:31:56Z",
    "deleted_at": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-Access-Key-Id
string
header
required
X-Access-Key-Secret
string
header
required

Body

application/json
online_conference_account_id
integer
required
public_id
string
required
title
string
required
Maximum length: 255
is_public
boolean
required
backer_event_id
integer | null
online_conference_attendees
object[]

Owner of OnlineConferenceAccount is automatically an attendee even if not specified. A User or Customer is automatically matched based on the Online Conference Attendee's provided email.

Response

200
application/json
message
string
required
data
object
required

An Online Conference resource object.