Skip to content

Instantly share code, notes, and snippets.

@bdeanindy
Created January 8, 2019 13:56
Show Gist options
  • Save bdeanindy/6a034559f4573c0bf5c7693a5d1adfea to your computer and use it in GitHub Desktop.
Save bdeanindy/6a034559f4573c0bf5c7693a5d1adfea to your computer and use it in GitHub Desktop.
Zoom Marketplace - Data Compliance API Request
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