Delete service integration
documentedDelete a service integration.
DELETE /services/{service_id}/integrations/{integration_id}Servicesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
Note: Official PagerDuty REST API v2 uses base URL https://api.pagerduty.com and the delete integration endpoint is /services/{service_id}/integrations/{integration_id}. Authentication uses the header Authorization: Token token=YOUR_API_KEY and Accept: application/vnd.pagerduty+json;version=2. See sources for details. ([postman.com](https://www.postman.com/pagerduty/pagerduty-public-api-collection/request/itumbti/get-an-add-on?utm_source=openai))
npx -y keychains@latest curl "https://api.pagerduty.com/services/{{$service_id}}/integrations/{{$integration_id}}" \
-X DELETE \
-H "Authorization: Token token={{PAGERDUTY_API_KEY}}" \
-H "Accept: application/vnd.pagerduty+json;version=2" \
-H "Content-Type: application/json"