Skip to main content
DELETE
/
vault-integrations
/
{id}
Delete Vault Integration
curl --request DELETE \
  --url https://api.example.com/vault-integrations/{id}

Overview

Deletes a vault integration owned by the caller. Every credential record that references this integration is cascaded and removed — any subsequent authenticate task action that pointed at those credentials will fail. The secrets inside your vault are not touched.

Path Parameters

id
string
required
Integration ID (UUID).

Example Request

curl -X DELETE "https://api.scrapengine.io/api/v1/vault-integrations/5f8c6a74-5f2e-4f5a-9e58-5b9c3c7d2a11" \
  -H "Authorization: Bearer $SCRAPENGINE_API_KEY"

Response

Success Response (204)

Empty body. Referencing credentials are removed atomically.

Error Responses

StatusDescription
401Unauthorized — invalid or missing API key.
404Integration not found or not owned by the caller.