Get Webhook Signing Keys
GET/v1/webhooks/:webhookId/keys
This endpoint returns the signing keys of a Webhook
identified by the webhookId
.
Signing keys are used for ensuring the Webhook requests you receive are actually sent by ConfigCat.
Here you can read more about Webhook request verification.
Request
Path Parameters
webhookId int32required
The identifier of the Webhook.
Responses
- 200
- 400
- 404
- 429
When everything is ok, the webhook signing keys are returned.
- application/json
- Schema
- Example (from schema)
Schema
key1 stringnullable
The first signing key.
key2 stringnullable
The second signing key.
{
"key1": "string",
"key2": "string"
}
Bad request.
Not found.
Too many requests. In case of the request rate exceeds the rate limits.
Loading...