I am trying to delete a webhook subscription to Microsoft graph. My http call is:
DELETE https://graph.microsoft.com/v1.0/subscriptions/3ecdf72f-f302-49f6-851c-d04d178a9ref
I got the id of the subscription using:
GET https://graph.microsoft.com/v1.0/subscriptions
As response I am getting this error:
{
"error": {
"code": "ExtensionError",
"message": "Operation: Delete; Exception: [Status Code: NotFound; Reason: Not Found]",
"innerError": {"request-id": "2c61eba9-86c8-4420-9276-d6581fd3c5b7", "date": "2018-10-30T15:11:57"}
}
}