action snyk_delete_credentials { label: "Delete credentials" description: "Removes any credentials set for this integration. If this is a brokered connection the operation will have no effect." provider: snyk method: DELETE path: "/org/{orgId}/integrations/{integrationId}/authentication" encoding: json input: { type: "object" properties: { integrationId: { type: "string" } orgId: { type: "string" } } required: ["integrationId", "orgId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }