January 21, 2022

Prefix Dollar Sign in Webhook JSON Payload with Wildcard

Post this release, i.e., January 21, 2022, whenever a webhook sends data to a specified notification URL, if any key name in the response begins with a dollar sign ($), it will be prefixed with the acronym "cs" as a wildcard. For example, the key named "$success" would be replaced with "cs$success."

Let's consider the following sample webhook data that contains a key prefixed with a dollar sign:

{
"$success": true
}

The key name will be prefixed with the "cs" acronym, as shown in the following webhook data:

{
"cs$success": true
}

Was this article helpful?

Thanks for your feedbackSmile-icon

^