action circuitsandbox_get_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}/participants" encoding: json input: { type: "object" properties: { filterType: { type: "string" enum: ["NONE", "ACCESS_TYPE", "ROLE", "STATE"] } filterValue: { type: "string" } id: { type: "string" } numberOfResults: { type: "number" format: "int32" } query: { type: "string" } searchPointer: { type: "string" } sortBy: { type: "string" enum: ["DISPLAY_NAME", "NAME", "FIRST_NAME"] } sortOrder: { type: "string" enum: ["ASCENDING", "DESCENDING"] } } required: ["filterType", "id", "sortBy", "sortOrder"] additionalProperties: false } output: { properties: { hasMore: { type: "boolean" description: "are more results available, than start another search" } participants: { type: "array" description: "list of participants" items: { properties: { creationTime: { type: "number" format: "int64" description: "Time when the participant was added to the space" } firstName: { type: "string" description: "The first name of the participant" } 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: "Number of replies in the space created by this participant." } numberOfTopics: { type: "number" format: "int32" description: "Number of topics in the space created by this participant." } 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" } state: { type: "string" description: "The name of the state of the participant" } 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 " } } } }