POST
/
online_conferences
/
{online_conference_id}
/
attendees
curl --request POST \
  --url https://{primary_domain}/api/public/v2.0/online_conferences/{online_conference_id}/attendees \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key-Id: <api-key>' \
  --header 'X-Access-Key-Secret: <api-key>' \
  --data '[
  {
    "name": "<string>",
    "email": "jsmith@example.com"
  }
]'
{
  "message": "<string>",
  "data": [
    {
      "id": 123,
      "online_conference_id": 123,
      "attendee_type": "App\\Models\\Tenant\\User",
      "attendee_id": 123,
      "name": "<string>",
      "email": "jsmith@example.com",
      "joined_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "deleted_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

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

Path Parameters

online_conference_id
integer
required

Body

application/json · object[]
email
string
required
Maximum length: 255
name
string | null
Maximum length: 255

Response

200
application/json
message
string
required
data
object[]
required

A list of Online Conference Attendee resource objects.