action shorten_get_statistics { label: "Get clicks statistics" description: "Retrieve the raw click statistics for your account. Clicks are retrieved by creation date in descending order." provider: shorten method: POST path: "/clicks/pg" encoding: json input: { type: "object" properties: { aliasId: { type: "string" description: "Alias Id" } dateFrom: { type: "string" description: "date From" } dateTo: { type: "string" description: "date To" } domain: { type: "string" description: "Domain name" } lastId: { type: "integer" description: "last Id" } } } output: { type: "object" properties: { accountId: { type: "string" } alias: { type: "string" } aliasId: { type: "string" } browser: { type: "string" } country: { type: "string" } createdAt: { type: "integer" format: "int64" } destination: { type: "string" } domain: { type: "string" } id: { type: "integer" } os: { type: "string" } referrer: { type: "string" } userAgent: { type: "string" } } } }