action clickmeter_account_get_guests { label: "Retrieve list of a guest" provider: clickmeter method: GET path: "/account/guests" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } sortBy: { type: "string" } sortDirection: { type: "string" enum: ["asc", "desc"] } textSearch: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { entities: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } } } } }