Skip to main content

Expire a specific Webhook Endpoint signing secret

This endpoint expires the secret associated with this endpoint

info

This operation requires authentication and admin role.

HTTP Request

POST /api/v2/webhook/endpoint/{id}/secret/expire/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this endpoint

Example Request

const inputBody = '{}';
const headers = {
'Content-Type':'application/json',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/webhook/endpoint/{id}/secret/expire/',
{
method: 'POST',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeInline

Example responses

{
"id": "integer",
"created_at": "string",
"updated_at": "string",
"is_active": "boolean",
"target": "string",
"description": "string",
"events": [
{
"type": "string",
"added_at": "string"
}
],
"ssl_cert_verification": "boolean"
}