Skip to main content

Get a specific Webhook Endpoint

This endpoint retrieves a specific webhook endpoint using ID

info

This operation requires authentication and admin role.

HTTP Request

GET /api/v2/webhook/endpoint/{id}/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this endpoint

Example Request

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

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


Responses

StatusMeaningDescriptionSchema
200OKResponse status codeEndpoint

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"
}