export async function createMeetingAndAddCustomerAndAgentAttendee()

in agent/src/meeting-operations/meeting.js [28:36]


export async function createMeetingAndAddCustomerAndAgentAttendee() {
  const pathParams = {};
  const pathTemplate = '/meeting';
  const method = 'POST';
  const additionalParams = {};
  const body = {};
  const response = await apiGatewayClient.invokeApi(pathParams, pathTemplate, method, additionalParams, body);
  return response.data;
}