action shorten_delete_alias { label: "Delete alias" description: "Deletes a single alias by providing alias and domain. If no domain is provided the API will search for the matching alias within the Short.fyi domain" provider: shorten method: DELETE path: "/aliases" encoding: json input: { type: "object" properties: { aliasName: { type: "string" } domainName: { type: "string" } } required: ["aliasName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }