POST /api/v2/meetings

Creates a Dialpad meeting.

Requires scope: conference:all

Rate limit: 1200 per minute.

Servers

Request headers

Name Type Required Description
Content-Type String Yes The media type of the request body.

Default value: "application/json"

Request body fields

Name Type Required Description
start_datetime Integer Yes

The meeting's start time (UTC seconds-since-epoch timestamp).

meeting_type Null Yes

The meeting's type.

Valid values:

  • "LARGE_MEETING"
  • "PERSONAL"
  • "UNIQUE_MEETING"
  • "CUSTOM_UNIQUE_MEETING"
recurrence Null No

How often the meeting should be repeated.

participants_info[] Array No

The list of users that participate in the meeting.

participants_info[].email Null No

The email address of the participant. (if applicable)

participants_info[].name Null No

Name of the meeting participant.

participants_info[].phone Null No

The number that the participant dialed in from. (if applicable)

participants_info[].display_name Null No

Name of the meeting participant.

participants_info[].talk_time Integer No

The amount of time this participant was speaking. (in milliseconds)

participants_info[].is_organizer Boolean No

Whether or not the participant is the meeting's organizer.

participants_info[].call_in_method Null No

The method this participant used to joined the meeting.

participants_info[].phone_number Null No

The number that the participant dialed in from. (if applicable)

call_out Boolean No

Whether or not the meeting should call the participants.

title Null Yes

The meeting's title.

duration Integer No

Duration of the meeting in seconds.

end_datetime Integer Yes

The meeting's end time (UTC seconds-since-epoch timestamp).

user_id Integer Yes

The Dialpad user's id.

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.