action circuitsandbox_get_pending_participants { label: "Get the pending participants of a space" description: "Get the pending participants of a space\nOauthScopes: WRITE_SPACE, MANAGE_SPACE" provider: circuitsandbox method: GET path: "/spaces/{id}/participants/pending" encoding: json input: { type: "object" properties: { id: { type: "string" } numberOfResults: { type: "number" format: "int32" } searchPointer: { type: "string" } } required: ["id"] 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 " } } } }