action circuitsandbox_search_participants_to_add { label: "Finds participants to add to add to a space " description: "Finds participants to add to a space \nOauthScopes: WRITE_SPACE, MANAGE_SPACE, ORGANIZE_SPACE" provider: circuitsandbox method: GET path: "/spaces/{id}/searchParticipantsToAdd" encoding: json input: { type: "object" properties: { id: { type: "string" } query: { type: "string" } } required: ["id", "query"] additionalProperties: false } output: { type: "array" items: { properties: { 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, true or false" } jobTitle: { type: "string" description: "The job title of the participant" } lastName: { type: "string" description: "The last name of the participant" } smallImageUri: { type: "string" description: "The uri of the small picture of the participant" } tenantId: { type: "string" description: "the tenant id of the participant" } userId: { type: "string" description: "The id of the participant" } } } } }