action shorten_get_alias { label: "Get alias" description: "Get detailed information for a single alias by providing its alias and domain name" provider: shorten method: GET path: "/aliases" encoding: json input: { type: "object" properties: { aliasName: { type: "string" } domainName: { type: "string" } } required: ["aliasName"] additionalProperties: false } output: { type: "object" required: ["name"] properties: { createdAt: { type: "integer" format: "int64" } destinations: { type: "array" items: { type: "object" required: ["url"] properties: { country: { type: "string" description: "ISO alpha-2 [country code](//en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements)" } os: { type: "string" description: "Please check the [supported OS list](#tag/OperatingSystems)" } url: { type: "string" } } } } domainName: { type: "string" } metatags: { type: "array" items: { type: "object" required: ["name", "content"] properties: { content: { type: "string" } name: { type: "string" } } } } name: { type: "string" } snippets: { type: "array" items: { type: "object" required: ["id"] properties: { id: { type: "string" description: "Please check the [supported snippets list](#tag/Snippets)" } parameters: { type: "object" } } } } updatedAt: { type: "integer" format: "int64" } } } }