action anchore_delete_user_credential { label: "Delete a credential by type" provider: anchore method: DELETE path: "/accounts/{accountname}/users/{username}/credentials" encoding: json input: { type: "object" properties: { accountname: { type: "string" } credential_type: { type: "string" enum: ["password"] } username: { type: "string" } } required: ["accountname", "credential_type", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }