Skip to main content
DELETE
/
credentials
/
{id}
Delete Credential
curl --request DELETE \
  --url https://api.example.com/credentials/{id}

Overview

Deletes a credential record owned by the caller. The actual secret inside your vault is unaffected — only the ScrapEngine reference (vault integration ID, path, field map, allow-list) is removed. Subsequent runs of the authenticate task action that reference this credential ID will fail with a not-found error.

Path Parameters

id
string
required
Credential ID (UUID).

Example Request

curl -X DELETE "https://api.scrapengine.io/api/v1/credentials/2b5aa4c8-b9e6-4e58-9c80-1d4bfd0a3f01" \
  -H "Authorization: Bearer $SCRAPENGINE_API_KEY"

Response

Success Response (204)

Empty body.

Error Responses

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