action shorten_get_aliases { label: "Get aliases by domain" description: "Obtain a list of all alias names associated with your account and given domain. Result array is in descending order by creation date. \n\n If no domain is specified you will receive a list of all the alias names you have created using the Short.fyi domain. \n\n If there are more results than the limit for the request the response will return you a value in lastId property you can specify it in the continueFrom query parameter to get the next batch of records." provider: shorten method: GET path: "/aliases/all" encoding: json input: { type: "object" properties: { continueFrom: { type: "string" } domainName: { type: "string" } limit: { type: "integer" } } additionalProperties: false } output: { type: "object" properties: { aliases: { type: "array" items: { type: "string" } } lastId: { type: "string" } } } }