action circuitsandbox_get_likes { label: "Get the likes of an item" description: "Get the likes of an item\nOauthScopes: READ_SPACE" provider: circuitsandbox method: GET path: "/spaces/likes/{itemId}" encoding: json input: { type: "object" properties: { itemId: { type: "string" } numberOfResults: { type: "number" format: "int32" } searchPointer: { type: "string" } } required: ["itemId"] additionalProperties: false } output: { properties: { hasMore: { type: "boolean" description: "More results available (true-use searchpointer for next search/false)" } participants: { type: "array" description: "A list of participants who like the topic" items: { properties: { firstName: { type: "string" description: "The first name of the user" } largeImageUri: { type: "string" description: "The large image uri of the user" } lastName: { type: "string" description: "The last name of the user" } smallImageUri: { type: "string" description: "The small image uri of the user" } userId: { type: "string" description: "The id of the user" } } } } searchPointer: { type: "string" description: "The searchpointer" } } } }