Hi @Derek Barka , Thanks for reaching out.
I think there is the issue with the format of the expirationDateTime in the subscription object (Body of the request)
This property takes dateTime as UTC time only. Below is the sample subscription object
{
"changeType": "created",
"notificationUrl": "https://webhook.azurewebsites.net/api/send/myNotifyClient",
"resource": "me/mailFolders('Inbox')/messages",
"expirationDateTime":"2016-11-20T18:23:45.9356913Z",
"clientState": "secretClientValue",
"latestSupportedTlsVersion": "v1_2"
}
Try changing the expirationDateTime in your example from '2024-02-06T20:27:36.6599538-05:00' to '2024-02-06T20:27:36.9356913Z'
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".