action shorten_get_clicks { label: "Get clicks" description: "Retrieve the raw click data for your account. Clicks are retrieved by creation date in descending order. \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: "/clicks" encoding: json input: { type: "object" properties: { continueFrom: { type: "string" } limit: { type: "integer" } } additionalProperties: false } output: { type: "object" properties: { clicks: { type: "array" items: { type: "object" properties: { alias: { type: "string" } aliasId: { type: "string" } browser: { type: "string" } country: { type: "string" } createdAt: { type: "integer" format: "int64" } destination: { type: "string" } domain: { type: "string" } os: { type: "string" } referrer: { type: "string" } userAgent: { type: "string" } } } } lastId: { type: "string" } } } }