Deauthorization Notification - Webhook Only oAuth App

Hello,

I am going to be publishing an application which ingests Cloud recordings into a platform for corporate users. I will not be retaining any user specific data within that application - What should the Deauthorization Notification do in my instance as there is no user data to remove from my side?

Thanks,
Mark

Hey @MarkWalsh,

Good question! Just implement the Deauth flow and set "compliance_completed": true and "user_data_retention": false in the request body.

{
  "client_id": "ABcDefGHIj12A",
  "user_id": "ABcDefGHIj12A",
  "account_id": "abcdEfghIJklMn00",
  "deauthorization_event_received": {
    "user_data_retention": false,
    "account_id": "abcdEfghIJklMn00",
    "user_id": "ABcDefGHIj12A",
    "signature": "ABcDefGHIj12A",
    "deauthorization_time": "2019-06-17T13:52:28.632Z",
    "client_id": "ABcDefGHIj12A"
  },
  "compliance_completed": true
}

Thanks,
Tommy