Created
January 8, 2019 13:56
-
-
Save bdeanindy/6a034559f4573c0bf5c7693a5d1adfea to your computer and use it in GitHub Desktop.
Zoom Marketplace - Data Compliance API Request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
POST /api/v2/oauth/data/compliance HTTP/1.1 | |
Host: https://zoom.us | |
Content-Type: application/json | |
Authorization: Basic | |
{ | |
"client_id": "string", //from webhook event | |
"user_id": "string", //from webhook event | |
"account_id":"string", //from webhook event | |
"deauthorization_event_received":{ | |
"client_id": "string", //your app client id | |
"user_id": "string", //user who deauthorized the app | |
"account_id": "string", //user's account id | |
"user_data_retention":"boolean", //true = retained explicit/written consent | |
"deauthorization_time":"string [date-time]", | |
"signature": "string" //your app's verification token | |
}, | |
"compliance_completed":"boolean" //true = data deleted | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment