POST api/VideoMeeting

Request Information

URI Parameters

None.

Body Parameters

VideoDataModel
NameDescriptionTypeAdditional information
EmployeeID

integer

None.

Mode

integer

None.

IsWithoutOTDetails

boolean

None.

sdm

ScheduleMeetingDataModel

None.

Request Formats

application/json, text/json, text/plain, text/html

Sample:
{
  "employeeID": 1,
  "mode": 2,
  "isWithoutOTDetails": true,
  "sdm": {
    "meetingID": 1,
    "startDate": "sample string 1",
    "enddate": "sample string 2",
    "title": "sample string 3",
    "description": "sample string 4",
    "notificationTime": 5,
    "isSendNotification": true,
    "isNotifyGuest": true,
    "isVideoMeeting": true,
    "addedBy": 9,
    "groupID": 10,
    "taskID": 11,
    "otVideoID": 12,
    "userList": [
      {
        "meetingID": 1,
        "meetingUserID": 2,
        "userType": 3,
        "type": "sample string 4",
        "userID": 1,
        "userName": "sample string 5",
        "userEmail": "sample string 6",
        "guestName": "sample string 7"
      },
      {
        "meetingID": 1,
        "meetingUserID": 2,
        "userType": 3,
        "type": "sample string 4",
        "userID": 1,
        "userName": "sample string 5",
        "userEmail": "sample string 6",
        "guestName": "sample string 7"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<VideoDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.DataModel">
  <EmployeeID>1</EmployeeID>
  <IsWithoutOTDetails>true</IsWithoutOTDetails>
  <Mode>2</Mode>
  <sdm>
    <AddedBy>9</AddedBy>
    <Description>sample string 4</Description>
    <Enddate>sample string 2</Enddate>
    <GroupID>10</GroupID>
    <IsNotifyGuest>true</IsNotifyGuest>
    <IsSendNotification>true</IsSendNotification>
    <IsVideoMeeting>true</IsVideoMeeting>
    <MeetingID>1</MeetingID>
    <NotificationTime>5</NotificationTime>
    <OTVideoID>12</OTVideoID>
    <StartDate>sample string 1</StartDate>
    <TaskID>11</TaskID>
    <Title>sample string 3</Title>
    <UserList>
      <VideoMeetingSchedulingUserListDataModel>
        <GuestName>sample string 7</GuestName>
        <MeetingID>1</MeetingID>
        <MeetingUserID>2</MeetingUserID>
        <Type>sample string 4</Type>
        <UserEmail>sample string 6</UserEmail>
        <UserID>1</UserID>
        <UserName>sample string 5</UserName>
        <UserType>3</UserType>
      </VideoMeetingSchedulingUserListDataModel>
      <VideoMeetingSchedulingUserListDataModel>
        <GuestName>sample string 7</GuestName>
        <MeetingID>1</MeetingID>
        <MeetingUserID>2</MeetingUserID>
        <Type>sample string 4</Type>
        <UserEmail>sample string 6</UserEmail>
        <UserID>1</UserID>
        <UserName>sample string 5</UserName>
        <UserType>3</UserType>
      </VideoMeetingSchedulingUserListDataModel>
    </UserList>
  </sdm>
</VideoDataModel>

multipart/form-data

Sample:
<VideoDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.DataModel"><EmployeeID>1</EmployeeID><IsWithoutOTDetails>true</IsWithoutOTDetails><Mode>2</Mode><sdm><AddedBy>9</AddedBy><Description>sample string 4</Description><Enddate>sample string 2</Enddate><GroupID>10</GroupID><IsNotifyGuest>true</IsNotifyGuest><IsSendNotification>true</IsSendNotification><IsVideoMeeting>true</IsVideoMeeting><MeetingID>1</MeetingID><NotificationTime>5</NotificationTime><OTVideoID>12</OTVideoID><StartDate>sample string 1</StartDate><TaskID>11</TaskID><Title>sample string 3</Title><UserList><VideoMeetingSchedulingUserListDataModel><GuestName>sample string 7</GuestName><MeetingID>1</MeetingID><MeetingUserID>2</MeetingUserID><Type>sample string 4</Type><UserEmail>sample string 6</UserEmail><UserID>1</UserID><UserName>sample string 5</UserName><UserType>3</UserType></VideoMeetingSchedulingUserListDataModel><VideoMeetingSchedulingUserListDataModel><GuestName>sample string 7</GuestName><MeetingID>1</MeetingID><MeetingUserID>2</MeetingUserID><Type>sample string 4</Type><UserEmail>sample string 6</UserEmail><UserID>1</UserID><UserName>sample string 5</UserName><UserType>3</UserType></VideoMeetingSchedulingUserListDataModel></UserList></sdm></VideoDataModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

VideoMeetingSuccessDataModel
NameDescriptionTypeAdditional information
OTVideoID

integer

None.

ScheduleMeetingID

integer

None.

OTSessionId

string

None.

OTToken

string

None.

CompanyID

integer

None.

Mode

integer

None.

MSG

string

None.

Success

integer

None.

Response Formats

application/json, text/json, text/plain, text/html

Sample:
{
  "otVideoID": 1,
  "scheduleMeetingID": 2,
  "otSessionId": "sample string 3",
  "otToken": "sample string 4",
  "companyID": 5,
  "mode": 6,
  "msg": "sample string 7",
  "success": 8
}

application/xml, text/xml

Sample:
<VideoMeetingSuccessDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.DataModel">
  <CompanyID>5</CompanyID>
  <MSG>sample string 7</MSG>
  <Mode>6</Mode>
  <OTSessionId>sample string 3</OTSessionId>
  <OTToken>sample string 4</OTToken>
  <OTVideoID>1</OTVideoID>
  <ScheduleMeetingID>2</ScheduleMeetingID>
  <Success>8</Success>
</VideoMeetingSuccessDataModel>

multipart/form-data

Sample:
<VideoMeetingSuccessDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.DataModel"><CompanyID>5</CompanyID><MSG>sample string 7</MSG><Mode>6</Mode><OTSessionId>sample string 3</OTSessionId><OTToken>sample string 4</OTToken><OTVideoID>1</OTVideoID><ScheduleMeetingID>2</ScheduleMeetingID><Success>8</Success></VideoMeetingSuccessDataModel>