POST /api/v2/meetings
Creates a Dialpad meeting.
Requires scope: conference:all
Rate limit: 1200 per minute.
Servers
- https://dialpad.com/
- https://sandbox.dialpad.com/
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 |
String | Yes |
The meeting's type. Valid values:
|
recurrence |
String | No |
How often the meeting should be repeated. |
participants_info[] |
Array | No |
The list of users that participate in the meeting. |
participants_info[].email |
String | No |
The email address of the participant. (if applicable) |
participants_info[].name |
String | No |
Name of the meeting participant. |
participants_info[].phone |
String | No |
The number that the participant dialed in from. (if applicable) |
participants_info[].display_name |
String | 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 |
String | No |
The method this participant used to joined the meeting. |
participants_info[].phone_number |
String | 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 |
String | 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
- Add HTTP Task to your workflow definition.
- 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.
- Click Test request to test run your request to the API and see the API's response.