POST | /Ams/ZoomEventListenerOAuth/{ClientID} | Receives and records a Zoom Event Subscription payload. |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
ClientID | path | int | No | |
Event | body | string | No | |
Event_Ts | body | string | No | |
Payload | body | ZoomEventPayloadOAuth | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Account_Id | form | string | No | |
PlainToken | form | string | No | |
Object | form | PayloadObject | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | long | No | |
Uuid | form | string | No | |
Host_Id | form | string | No | |
Topic | form | string | No | |
Type | form | int | No | |
Start_Time | form | DateTime | No | |
Timezone | form | string | No | |
Duration | form | int | No | |
Participant | form | ZoomParticipant | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
User_Id | form | string | No | |
User_Name | form | string | No | |
form | string | No | ||
Id | form | string | No | |
Join_Time | form | DateTime | No | |
Leave_Time | form | DateTime | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Ams/ZoomEventListenerOAuth/{ClientID} HTTP/1.1
Host: ws.yourmembership.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ClientID: 0,
Event: String,
Event_Ts: String,
Payload:
{
Account_Id: String,
PlainToken: String,
Object:
{
Id: 0,
Uuid: String,
Host_Id: String,
Topic: String,
Type: 0,
Start_Time: 0001-01-01,
Timezone: String,
Duration: 0,
Participant:
{
User_Id: String,
User_Name: String,
Email: String,
Id: String,
Join_Time: 0001-01-01,
Leave_Time: 0001-01-01
}
}
}
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { }