I successfully used the webhook callback API with signing_key verification a few days ago. But now, for some reason, the signing key changes with every callback making me reject the call.
What could possibly be the cause? I did follow the docs @ https://calendly.stoplight.io/docs/api-docs/c1ddc06ce1f1b-create-webhook-subscription
Below is my successful webhook I created:
"collection": c
{
"callback_url": "https://TO_SOME_PLACE/",
"created_at": "2023-11-14T18:45:52.610226Z",
"creator": "https://api.calendly.com/users/USER_ID",
"events": /
"invitee.created",
"invitee.canceled",
"invitee_no_show.created"
],
"organization": "https://api.calendly.com/organizations/ORG_ID",
"retry_started_at": null,
"scope": "user",
"state": "active",
"updated_at": "2023-11-14T18:45:52.610226Z",
"uri": "https://api.calendly.com/webhook_subscriptions/SUB_ID",
"user": "https://api.calendly.com/users/USE_ID"
}
],
Thank you in advance