action circuitsandbox_get_participants_by_conv_id { label: "Performs a list of participants" description: "Performs a search for participants. The max number of participants is configurable. If more participants are available a search pointer is returned for consecutive calls.\nOauthScopes: READ_CONVERSATIONS" provider: circuitsandbox method: GET path: "/conversations/{convId}/participants" encoding: json input: { type: "object" properties: { convId: { type: "string" } name: { type: "string" } pageSize: { type: "number" format: "int32" } searchPointer: { type: "string" } type: { type: "string" enum: ["REGULAR", "MODERATOR", "GUEST", "FORMER", "BOT"] } } required: ["convId", "pageSize"] additionalProperties: false } output: { type: "array" items: { properties: { hasMore: { type: "boolean" description: "are more results available, then start another search with finer query" } participantList: { type: "array" description: "list of participants" items: { properties: { displayName: { type: "string" description: "The display name of the participant." } firstName: { type: "string" description: "The first name of the participant." } isDeleted: { type: "boolean" description: "If the participant is deleted." } largeImageUri: { type: "string" description: "The large image uri of the participant." } lastName: { type: "string" description: "The last name of the participant." } smallImageUri: { type: "string" description: "The small image uri of the participant;" } type: { type: "string" description: "The type of the participant" } userId: { type: "string" description: "The unique user id of the participant." } } } } searchPointer: { type: "string" description: "pointer for stored search " } } } } }