MeetingsAPI

new MeetingsAPI(rest)

This class is used to interact with Meetings in TidyHQ.
Parameters:
NameTypeDescription
restRestThe rest instance to use for requests.

Methods

(async) getMeeting(meeting_id, optionsopt) → {Promise.<TidyAPI_V1_Meeting>}

Get a single meeting.
Parameters:
NameTypeAttributesDefaultDescription
meeting_idstringThe ID of the meeting.
optionsobject<optional>
{}
Properties
NameTypeAttributesDescription
access_tokenstring<optional>
The access token to use.
Returns:
- The meeting.
Type: 
Promise.<TidyAPI_V1_Meeting>

(async) getMeetings(optionsopt) → {Promise.<TidyAPI_V1_Meetings>}

Get a list of all meetings.
Parameters:
NameTypeAttributesDescription
optionsobject<optional>
Properties
NameTypeAttributesDescription
access_tokenstring<optional>
The access token to use.
limitstring<optional>
The number of results to return.
offsetstring<optional>
The number of results to skip.
Returns:
- The list of meetings.
Type: 
Promise.<TidyAPI_V1_Meetings>