Delete a Data Forwarder for an Organization
DELETE /api/0/organizations/{organization_id_or_slug}/forwarding/{data_forwarder_id}/
Deletes a data forwarder for an organization. All project-specific overrides will be deleted as well.
Path Parameters
organization_id_or_slug(string)REQUIREDThe ID or slug of the organization the resource belongs to.
data_forwarder_id(integer)REQUIREDThe ID of the data forwarder you'd like to query.
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:org:write
Copied
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/forwarding/{data_forwarder_id}/ \ -H 'Authorization: Bearer <auth_token>' \ -X DELETE
RESPONSE
CopiedNo Content.
Was this helpful?