action circuitsandbox_start_detailed_space_search { label: "starts a detailed search in a space" description: "starts a detailed search in a space\nOauthScopes: READ_SPACE" provider: circuitsandbox method: GET path: "/spaces/search/startDetailed" encoding: json input: { type: "object" properties: { endTime: { type: "string" format: "date-time" } scope: { type: "string" enum: ["ALL", "SPACES", "TOPICBY", "FILES", "TAGS", "LABELS", "DATE"] } searchId: { type: "string" } searchTerm: { type: "string" } spaceId: { type: "string" } startTime: { type: "string" format: "date-time" } } required: ["scope", "searchTerm", "spaceId"] additionalProperties: false } output: { type: "array" items: { properties: { resList: { type: "array" description: "A list of v2restspacesearchresultdetailedback containing spaceId, item ids and file ids" items: { properties: { fileIds: { type: "array" description: "=The list of file ids" items: { type: "string" } } itemIds: { type: "array" description: "=The list of items ids" items: { type: "string" } } spaceId: { type: "string" description: "The id of the space" } status: { type: "string" description: "The status of the search (NORESULT, ERROR, TIMEOUT, MORERESULT)" } } } } } } } }