action circuitsandbox_search_space_participants { label: "Get the participants of a space" description: "Get the participants of a space\nOauthScopes: READ_SPACE" provider: circuitsandbox method: GET path: "/spaces/{id}/searchSpaceParticipants" encoding: json input: { type: "object" properties: { id: { type: "string" } query: { type: "string" } } required: ["id", "query"] additionalProperties: false } output: { type: "array" items: { properties: { hasMore: { type: "boolean" description: "are more results available, then start another search with finer query" } participants: { type: "array" description: "list of participants" items: { properties: { creationTime: { type: "number" format: "int64" description: "Time when the participant was added to the space" } department: { type: "string" description: "The department of the participant" } firstName: { type: "string" description: "The first name of the participant" } isMember: { type: "boolean" description: "Is the participant a member of the space" } jobDescription: { type: "string" description: "The job description of the participant" } lastContentCreationTime: { type: "number" format: "int64" description: "The last time the participant created content." } lastName: { type: "string" description: "The last name of the participant" } modificationTime: { type: "number" format: "int64" description: "Time when the participant was changed last." } numberOfReplies: { type: "number" format: "int32" description: "The number of replies" } numberOfTopics: { type: "number" format: "int32" description: "The number of topics" } reason: { type: "string" description: "The reason of it all (42)" } role: { type: "string" description: "The name of the role of the participant" } smallImageUri: { type: "string" description: "The uri of the small picture of the participant" } spaceId: { type: "string" description: "The id of the space" } state: { type: "string" description: "The name of the state " } tenantId: { type: "string" description: "the tenant id of the participant" } userId: { type: "string" description: "The id of the participant" } } } } searchPointer: { type: "string" description: "pointer for stored search " } } } } }