action anchore_delete_user { label: "Delete a specific user credential by username of the credential. Cannot be the credential used to authenticate the request." provider: anchore method: DELETE path: "/accounts/{accountname}/users/{username}" encoding: json input: { type: "object" properties: { accountname: { type: "string" } username: { type: "string" } } required: ["accountname", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }