/r/{repoId}/events/{id}/{webHookId}

DELETE
https://sample-api.d-velop.cloud
Deleting a webhook
You can delete a webhook that is no longer required from the repository by applying this request.
Parameters
repoId/string/required
The unique ID of the repository.
id/string/required
The unique ID of the event.
webHookId/string/required
The unique ID of the webhook.
Responses
204
The webhook was deleted successfully.
No content
404
The webhook with the specified ID could not be determined.
Content
Media type: application/json
{
  "code": {
    "type": "integer",
    "format": "int32",
    "example": 240100
  },
  "reason": {
    "type": "string",
    "nullable": true,
    "example": "Reason why the request failed."
  }
}
Media type: application/hal+json
{
  "code": {
    "type": "integer",
    "format": "int32",
    "example": 240100
  },
  "reason": {
    "type": "string",
    "nullable": true,
    "example": "Reason why the request failed."
  }
}
Show operation

Language

const options = {method: 'DELETE', headers: {accept: 'application/json'}};

fetch('https://example.com/dmsconfig/r/REPOID/events/ID/WEBHOOKID', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));