Remove a Service Hook
DELETE /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/hooks/{hook_id}/
Remove a service hook.
Path Parameters
- organization_id_or_slug(string)REQUIRED
- The ID or slug of the organization the client keys belong to. 
- project_id_or_slug(string)REQUIRED
- The ID or slug of the project the client keys belong to. 
- hook_id(string)REQUIRED
- The GUID of the service hook. 
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:- project:admin
Copied
curl https://sentry.io/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/hooks/{hook_id}/ \ -H 'Authorization: Bearer <auth_token>' \ -X DELETE
RESPONSE
CopiedSuccess.
Was this helpful?