[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-webex-automation":3,"mdc-je5vu7-key":50,"related-repo-composio-webex-automation":1740,"related-org-composio-webex-automation":1824},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":45,"sourceUrl":48,"mdContent":49},"webex-automation","Webex Automation","manage Webex messaging and rooms via Composio","Automate Cisco Webex messaging, rooms, teams, webhooks, and people management through natural language commands",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},"composio","Composio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcomposio.png","ComposioHQ",[14,16,19,22],{"name":10,"slug":9,"type":15},"tag",{"name":17,"slug":18,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},"MCP","mcp",{"name":23,"slug":24,"type":15},"Communications","communications",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:45:09.012268",null,7603,[31,32,33,18,34,35,36,9,37,38,39,21,40,41,42,43,44],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":26,"stars":25,"forks":29,"topics":46,"description":47},[31,32,33,18,34,35,36,9,37,38,39,21,40,41,42,43,44],"A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows","https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills\u002Ftree\u002FHEAD\u002Fcomposio-skills\u002Fwebex-automation","---\nname: Webex Automation\ndescription: \"Automate Cisco Webex messaging, rooms, teams, webhooks, and people management through natural language commands\"\nrequires:\n  mcp:\n    - rube\n---\n\n# Webex Automation\n\nAutomate Cisco Webex collaboration workflows -- send messages, manage rooms and teams, configure webhooks, and look up people -- all through natural language.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Fwebex](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fwebex)\n\n---\n\n## Setup\n\n1. Add the Rube MCP server to your environment: `https:\u002F\u002Frube.app\u002Fmcp`\n2. Connect your Webex account when prompted (OAuth flow via Composio)\n3. Start issuing natural language commands for Webex automation\n\n---\n\n## Core Workflows\n\n### 1. Send a Message to a Room or Person\n\nPost plain text, markdown, file attachments, or Adaptive Cards to any Webex room or directly to a person.\n\n**Tool:** `WEBEX_MESSAGING_CREATE_MESSAGE`\n\nKey parameters:\n- `roomId` -- target room ID (use `WEBEX_MESSAGING_LIST_ROOMS` to find it)\n- `toPersonEmail` -- send a private 1:1 message instead (mutually exclusive with `roomId`)\n- `text` -- plain text content (max 7439 bytes)\n- `markdown` -- markdown-formatted content (takes precedence over `text`)\n- `files` -- list of public URLs for file attachments (one file per message)\n- `attachments` -- Adaptive Card JSON (one card per message)\n- `parentId` -- reply to a specific message as a threaded response\n\nExample prompt:\n> \"Send a markdown message to room Y2lz... saying **Deploy completed** with a link to the release notes\"\n\n---\n\n### 2. List and Discover Rooms\n\nBrowse all rooms you belong to, filtered by type, team, or sorted by activity.\n\n**Tool:** `WEBEX_MESSAGING_LIST_ROOMS`\n\nKey parameters:\n- `type` -- filter by `direct` (1:1) or `group`\n- `teamId` -- limit to rooms in a specific team\n- `sortBy` -- sort by `id`, `lastactivity`, or `created`\n- `max` -- limit results (1-1000, default 100)\n\nFollow-up with `WEBEX_MESSAGING_GET_ROOM_DETAILS` to get full metadata for a specific room including title, type, lock status, creator, and timestamps.\n\nExample prompt:\n> \"List my 10 most recently active group rooms in Webex\"\n\n---\n\n### 3. Manage Webhooks for Event-Driven Automation\n\nCreate webhooks to receive real-time HTTP POST notifications when Webex resources change.\n\n**Tool:** `WEBEX_WEBHOOKS_CREATE_WEBHOOK`\n\nKey parameters:\n- `name` -- human-friendly webhook name (required)\n- `targetUrl` -- URL that receives POST notifications (required)\n- `resource` -- what to monitor: `messages`, `rooms`, `memberships`, `meetings`, `recordings`, `meetingParticipants`, `telephony_calls`, etc. (required)\n- `event` -- trigger type: `created`, `updated`, `deleted`, `started`, `ended`, `joined`, `left` (required)\n- `filter` -- scope notifications (e.g., `roomId=\u003Cid>` or `hostEmail=\u003Cemail>`)\n- `secret` -- optional HMAC secret for payload signature verification\n- `ownedBy` -- `creator` for personal or `org` for organization-wide webhooks\n\nSupporting tools:\n- `WEBEX_LIST_WEBHOOKS` -- list all registered webhooks with optional `max` and `ownedBy` filters\n- `WEBEX_WEBHOOKS_GET_WEBHOOK` -- inspect a specific webhook by `webhookId`\n\nExample prompt:\n> \"Create a webhook called 'New Messages' that POSTs to https:\u002F\u002Fmy-app.com\u002Fhook whenever a message is created in room Y2lz...\"\n\n---\n\n### 4. Manage Team Memberships\n\nAdd people to Webex teams and optionally grant moderator privileges.\n\n**Tool:** `WEBEX_MESSAGING_CREATE_TEAM_MEMBERSHIP`\n\nKey parameters:\n- `teamId` -- the team to add the person to (required)\n- `personEmail` -- email of the person to add\n- `personId` -- Webex person ID (alternative to email)\n- `isModerator` -- set to `true` for moderator access (default `false`)\n\nUse `WEBEX_LIST_TEAMS` to discover available teams first.\n\nExample prompt:\n> \"Add alice@example.com as a moderator to team Y2lz...\"\n\n---\n\n### 5. Audit Room Memberships\n\nCheck who is in a room, verify a specific person's membership, or list memberships across teams.\n\n**Tool:** `WEBEX_MESSAGING_LIST_MEMBERSHIPS`\n\nKey parameters:\n- `roomId` -- list all members of a specific room\n- `personEmail` -- check if a person is a member (requires `roomId`)\n- `personId` -- check by Webex person ID (requires `roomId`)\n- `teamId` -- filter by team association\n- `max` -- limit results\n\nExample prompt:\n> \"List all members of room Y2lz... and tell me who the moderators are\"\n\n---\n\n### 6. Search and Look Up People\n\nLook up people in your Webex organization by email, display name, or ID.\n\n**Tool:** `WEBEX_PEOPLE_LIST_PEOPLE`\n\nUse to resolve names to person IDs before sending direct messages or adding team members.\n\nExample prompt:\n> \"Find the Webex person ID for bob@company.com\"\n\n---\n\n## Known Pitfalls\n\n| Pitfall | Details |\n|---------|---------|\n| Webhook auto-disable | Target URL must respond with HTTP 2xx; 100 failures in 5 minutes disables the webhook automatically |\n| Message size limit | Both `text` and `markdown` have a 7439-byte maximum |\n| One file per message | The `files` array accepts a list but only one attachment is actually supported per message |\n| One card per message | Only one Adaptive Card attachment is supported per message |\n| Mutually exclusive targets | `roomId` and `toPersonEmail`\u002F`toPersonId` cannot be used together when sending messages |\n| Room update requires title | `WEBEX_UPDATE_ROOM` always requires the `title` parameter, even when only changing lock status or team |\n| orgPublicSpaces conflicts | Cannot combine `orgPublicSpaces` with `teamId`, `type`, or `sortBy` when listing rooms |\n| Webhook read scope | Creating a webhook requires `read` scope on the monitored resource type |\n| Membership filter requires roomId | `personEmail` and `personId` filters in list memberships require `roomId` unless you are a Compliance Officer |\n\n---\n\n## Quick Reference\n\n| Action | Tool Slug | Key Params |\n|--------|-----------|------------|\n| Send message | `WEBEX_MESSAGING_CREATE_MESSAGE` | `roomId`, `text`\u002F`markdown`, `toPersonEmail` |\n| List rooms | `WEBEX_MESSAGING_LIST_ROOMS` | `type`, `sortBy`, `max` |\n| Get room details | `WEBEX_MESSAGING_GET_ROOM_DETAILS` | `roomId` |\n| Update room | `WEBEX_UPDATE_ROOM` | `roomId`, `title` |\n| Delete message | `WEBEX_MESSAGING_DELETE_MESSAGE` | `messageId` |\n| Get message details | `WEBEX_MESSAGING_GET_MESSAGE_DETAILS` | `messageId` |\n| Create webhook | `WEBEX_WEBHOOKS_CREATE_WEBHOOK` | `name`, `targetUrl`, `resource`, `event` |\n| List webhooks | `WEBEX_LIST_WEBHOOKS` | `max`, `ownedBy` |\n| Get webhook | `WEBEX_WEBHOOKS_GET_WEBHOOK` | `webhookId` |\n| Add team member | `WEBEX_MESSAGING_CREATE_TEAM_MEMBERSHIP` | `teamId`, `personEmail`, `isModerator` |\n| List memberships | `WEBEX_MESSAGING_LIST_MEMBERSHIPS` | `roomId`, `personEmail`, `max` |\n| List people | `WEBEX_PEOPLE_LIST_PEOPLE` | email, displayName, ID filters |\n| List teams | `WEBEX_LIST_TEAMS` | `max` |\n\n---\n\n*Powered by [Composio](https:\u002F\u002Fcomposio.dev)*\n",{"data":51,"body":54},{"name":5,"description":7,"requires":52},{"mcp":53},[41],{"type":55,"children":56},"root",[57,64,70,90,94,101,128,131,137,144,149,164,169,270,275,291,294,300,305,318,322,405,418,422,430,433,439,444,458,462,672,677,722,726,742,745,751,756,770,774,835,848,852,868,871,877,882,896,900,965,969,977,980,986,991,1005,1010,1014,1030,1033,1039,1290,1293,1299,1722,1725],{"type":58,"tag":59,"props":60,"children":61},"element","h1",{"id":4},[62],{"type":63,"value":5},"text",{"type":58,"tag":65,"props":66,"children":67},"p",{},[68],{"type":63,"value":69},"Automate Cisco Webex collaboration workflows -- send messages, manage rooms and teams, configure webhooks, and look up people -- all through natural language.",{"type":58,"tag":65,"props":71,"children":72},{},[73,79,81],{"type":58,"tag":74,"props":75,"children":76},"strong",{},[77],{"type":63,"value":78},"Toolkit docs:",{"type":63,"value":80}," ",{"type":58,"tag":82,"props":83,"children":87},"a",{"href":84,"rel":85},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fwebex",[86],"nofollow",[88],{"type":63,"value":89},"composio.dev\u002Ftoolkits\u002Fwebex",{"type":58,"tag":91,"props":92,"children":93},"hr",{},[],{"type":58,"tag":95,"props":96,"children":98},"h2",{"id":97},"setup",[99],{"type":63,"value":100},"Setup",{"type":58,"tag":102,"props":103,"children":104},"ol",{},[105,118,123],{"type":58,"tag":106,"props":107,"children":108},"li",{},[109,111],{"type":63,"value":110},"Add the Rube MCP server to your environment: ",{"type":58,"tag":112,"props":113,"children":115},"code",{"className":114},[],[116],{"type":63,"value":117},"https:\u002F\u002Frube.app\u002Fmcp",{"type":58,"tag":106,"props":119,"children":120},{},[121],{"type":63,"value":122},"Connect your Webex account when prompted (OAuth flow via Composio)",{"type":58,"tag":106,"props":124,"children":125},{},[126],{"type":63,"value":127},"Start issuing natural language commands for Webex automation",{"type":58,"tag":91,"props":129,"children":130},{},[],{"type":58,"tag":95,"props":132,"children":134},{"id":133},"core-workflows",[135],{"type":63,"value":136},"Core Workflows",{"type":58,"tag":138,"props":139,"children":141},"h3",{"id":140},"_1-send-a-message-to-a-room-or-person",[142],{"type":63,"value":143},"1. Send a Message to a Room or Person",{"type":58,"tag":65,"props":145,"children":146},{},[147],{"type":63,"value":148},"Post plain text, markdown, file attachments, or Adaptive Cards to any Webex room or directly to a person.",{"type":58,"tag":65,"props":150,"children":151},{},[152,157,158],{"type":58,"tag":74,"props":153,"children":154},{},[155],{"type":63,"value":156},"Tool:",{"type":63,"value":80},{"type":58,"tag":112,"props":159,"children":161},{"className":160},[],[162],{"type":63,"value":163},"WEBEX_MESSAGING_CREATE_MESSAGE",{"type":58,"tag":65,"props":165,"children":166},{},[167],{"type":63,"value":168},"Key parameters:",{"type":58,"tag":170,"props":171,"children":172},"ul",{},[173,192,210,220,237,248,259],{"type":58,"tag":106,"props":174,"children":175},{},[176,182,184,190],{"type":58,"tag":112,"props":177,"children":179},{"className":178},[],[180],{"type":63,"value":181},"roomId",{"type":63,"value":183}," -- target room ID (use ",{"type":58,"tag":112,"props":185,"children":187},{"className":186},[],[188],{"type":63,"value":189},"WEBEX_MESSAGING_LIST_ROOMS",{"type":63,"value":191}," to find it)",{"type":58,"tag":106,"props":193,"children":194},{},[195,201,203,208],{"type":58,"tag":112,"props":196,"children":198},{"className":197},[],[199],{"type":63,"value":200},"toPersonEmail",{"type":63,"value":202}," -- send a private 1:1 message instead (mutually exclusive with ",{"type":58,"tag":112,"props":204,"children":206},{"className":205},[],[207],{"type":63,"value":181},{"type":63,"value":209},")",{"type":58,"tag":106,"props":211,"children":212},{},[213,218],{"type":58,"tag":112,"props":214,"children":216},{"className":215},[],[217],{"type":63,"value":63},{"type":63,"value":219}," -- plain text content (max 7439 bytes)",{"type":58,"tag":106,"props":221,"children":222},{},[223,229,231,236],{"type":58,"tag":112,"props":224,"children":226},{"className":225},[],[227],{"type":63,"value":228},"markdown",{"type":63,"value":230}," -- markdown-formatted content (takes precedence over ",{"type":58,"tag":112,"props":232,"children":234},{"className":233},[],[235],{"type":63,"value":63},{"type":63,"value":209},{"type":58,"tag":106,"props":238,"children":239},{},[240,246],{"type":58,"tag":112,"props":241,"children":243},{"className":242},[],[244],{"type":63,"value":245},"files",{"type":63,"value":247}," -- list of public URLs for file attachments (one file per message)",{"type":58,"tag":106,"props":249,"children":250},{},[251,257],{"type":58,"tag":112,"props":252,"children":254},{"className":253},[],[255],{"type":63,"value":256},"attachments",{"type":63,"value":258}," -- Adaptive Card JSON (one card per message)",{"type":58,"tag":106,"props":260,"children":261},{},[262,268],{"type":58,"tag":112,"props":263,"children":265},{"className":264},[],[266],{"type":63,"value":267},"parentId",{"type":63,"value":269}," -- reply to a specific message as a threaded response",{"type":58,"tag":65,"props":271,"children":272},{},[273],{"type":63,"value":274},"Example prompt:",{"type":58,"tag":276,"props":277,"children":278},"blockquote",{},[279],{"type":58,"tag":65,"props":280,"children":281},{},[282,284,289],{"type":63,"value":283},"\"Send a markdown message to room Y2lz... saying ",{"type":58,"tag":74,"props":285,"children":286},{},[287],{"type":63,"value":288},"Deploy completed",{"type":63,"value":290}," with a link to the release notes\"",{"type":58,"tag":91,"props":292,"children":293},{},[],{"type":58,"tag":138,"props":295,"children":297},{"id":296},"_2-list-and-discover-rooms",[298],{"type":63,"value":299},"2. List and Discover Rooms",{"type":58,"tag":65,"props":301,"children":302},{},[303],{"type":63,"value":304},"Browse all rooms you belong to, filtered by type, team, or sorted by activity.",{"type":58,"tag":65,"props":306,"children":307},{},[308,312,313],{"type":58,"tag":74,"props":309,"children":310},{},[311],{"type":63,"value":156},{"type":63,"value":80},{"type":58,"tag":112,"props":314,"children":316},{"className":315},[],[317],{"type":63,"value":189},{"type":58,"tag":65,"props":319,"children":320},{},[321],{"type":63,"value":168},{"type":58,"tag":170,"props":323,"children":324},{},[325,350,361,394],{"type":58,"tag":106,"props":326,"children":327},{},[328,334,336,342,344],{"type":58,"tag":112,"props":329,"children":331},{"className":330},[],[332],{"type":63,"value":333},"type",{"type":63,"value":335}," -- filter by ",{"type":58,"tag":112,"props":337,"children":339},{"className":338},[],[340],{"type":63,"value":341},"direct",{"type":63,"value":343}," (1:1) or ",{"type":58,"tag":112,"props":345,"children":347},{"className":346},[],[348],{"type":63,"value":349},"group",{"type":58,"tag":106,"props":351,"children":352},{},[353,359],{"type":58,"tag":112,"props":354,"children":356},{"className":355},[],[357],{"type":63,"value":358},"teamId",{"type":63,"value":360}," -- limit to rooms in a specific team",{"type":58,"tag":106,"props":362,"children":363},{},[364,370,372,378,380,386,388],{"type":58,"tag":112,"props":365,"children":367},{"className":366},[],[368],{"type":63,"value":369},"sortBy",{"type":63,"value":371}," -- sort by ",{"type":58,"tag":112,"props":373,"children":375},{"className":374},[],[376],{"type":63,"value":377},"id",{"type":63,"value":379},", ",{"type":58,"tag":112,"props":381,"children":383},{"className":382},[],[384],{"type":63,"value":385},"lastactivity",{"type":63,"value":387},", or ",{"type":58,"tag":112,"props":389,"children":391},{"className":390},[],[392],{"type":63,"value":393},"created",{"type":58,"tag":106,"props":395,"children":396},{},[397,403],{"type":58,"tag":112,"props":398,"children":400},{"className":399},[],[401],{"type":63,"value":402},"max",{"type":63,"value":404}," -- limit results (1-1000, default 100)",{"type":58,"tag":65,"props":406,"children":407},{},[408,410,416],{"type":63,"value":409},"Follow-up with ",{"type":58,"tag":112,"props":411,"children":413},{"className":412},[],[414],{"type":63,"value":415},"WEBEX_MESSAGING_GET_ROOM_DETAILS",{"type":63,"value":417}," to get full metadata for a specific room including title, type, lock status, creator, and timestamps.",{"type":58,"tag":65,"props":419,"children":420},{},[421],{"type":63,"value":274},{"type":58,"tag":276,"props":423,"children":424},{},[425],{"type":58,"tag":65,"props":426,"children":427},{},[428],{"type":63,"value":429},"\"List my 10 most recently active group rooms in Webex\"",{"type":58,"tag":91,"props":431,"children":432},{},[],{"type":58,"tag":138,"props":434,"children":436},{"id":435},"_3-manage-webhooks-for-event-driven-automation",[437],{"type":63,"value":438},"3. Manage Webhooks for Event-Driven Automation",{"type":58,"tag":65,"props":440,"children":441},{},[442],{"type":63,"value":443},"Create webhooks to receive real-time HTTP POST notifications when Webex resources change.",{"type":58,"tag":65,"props":445,"children":446},{},[447,451,452],{"type":58,"tag":74,"props":448,"children":449},{},[450],{"type":63,"value":156},{"type":63,"value":80},{"type":58,"tag":112,"props":453,"children":455},{"className":454},[],[456],{"type":63,"value":457},"WEBEX_WEBHOOKS_CREATE_WEBHOOK",{"type":58,"tag":65,"props":459,"children":460},{},[461],{"type":63,"value":168},{"type":58,"tag":170,"props":463,"children":464},{},[465,476,487,548,608,634,645],{"type":58,"tag":106,"props":466,"children":467},{},[468,474],{"type":58,"tag":112,"props":469,"children":471},{"className":470},[],[472],{"type":63,"value":473},"name",{"type":63,"value":475}," -- human-friendly webhook name (required)",{"type":58,"tag":106,"props":477,"children":478},{},[479,485],{"type":58,"tag":112,"props":480,"children":482},{"className":481},[],[483],{"type":63,"value":484},"targetUrl",{"type":63,"value":486}," -- URL that receives POST notifications (required)",{"type":58,"tag":106,"props":488,"children":489},{},[490,496,498,504,505,511,512,518,519,525,526,532,533,539,540,546],{"type":58,"tag":112,"props":491,"children":493},{"className":492},[],[494],{"type":63,"value":495},"resource",{"type":63,"value":497}," -- what to monitor: ",{"type":58,"tag":112,"props":499,"children":501},{"className":500},[],[502],{"type":63,"value":503},"messages",{"type":63,"value":379},{"type":58,"tag":112,"props":506,"children":508},{"className":507},[],[509],{"type":63,"value":510},"rooms",{"type":63,"value":379},{"type":58,"tag":112,"props":513,"children":515},{"className":514},[],[516],{"type":63,"value":517},"memberships",{"type":63,"value":379},{"type":58,"tag":112,"props":520,"children":522},{"className":521},[],[523],{"type":63,"value":524},"meetings",{"type":63,"value":379},{"type":58,"tag":112,"props":527,"children":529},{"className":528},[],[530],{"type":63,"value":531},"recordings",{"type":63,"value":379},{"type":58,"tag":112,"props":534,"children":536},{"className":535},[],[537],{"type":63,"value":538},"meetingParticipants",{"type":63,"value":379},{"type":58,"tag":112,"props":541,"children":543},{"className":542},[],[544],{"type":63,"value":545},"telephony_calls",{"type":63,"value":547},", etc. (required)",{"type":58,"tag":106,"props":549,"children":550},{},[551,557,559,564,565,571,572,578,579,585,586,592,593,599,600,606],{"type":58,"tag":112,"props":552,"children":554},{"className":553},[],[555],{"type":63,"value":556},"event",{"type":63,"value":558}," -- trigger type: ",{"type":58,"tag":112,"props":560,"children":562},{"className":561},[],[563],{"type":63,"value":393},{"type":63,"value":379},{"type":58,"tag":112,"props":566,"children":568},{"className":567},[],[569],{"type":63,"value":570},"updated",{"type":63,"value":379},{"type":58,"tag":112,"props":573,"children":575},{"className":574},[],[576],{"type":63,"value":577},"deleted",{"type":63,"value":379},{"type":58,"tag":112,"props":580,"children":582},{"className":581},[],[583],{"type":63,"value":584},"started",{"type":63,"value":379},{"type":58,"tag":112,"props":587,"children":589},{"className":588},[],[590],{"type":63,"value":591},"ended",{"type":63,"value":379},{"type":58,"tag":112,"props":594,"children":596},{"className":595},[],[597],{"type":63,"value":598},"joined",{"type":63,"value":379},{"type":58,"tag":112,"props":601,"children":603},{"className":602},[],[604],{"type":63,"value":605},"left",{"type":63,"value":607}," (required)",{"type":58,"tag":106,"props":609,"children":610},{},[611,617,619,625,627,633],{"type":58,"tag":112,"props":612,"children":614},{"className":613},[],[615],{"type":63,"value":616},"filter",{"type":63,"value":618}," -- scope notifications (e.g., ",{"type":58,"tag":112,"props":620,"children":622},{"className":621},[],[623],{"type":63,"value":624},"roomId=\u003Cid>",{"type":63,"value":626}," or ",{"type":58,"tag":112,"props":628,"children":630},{"className":629},[],[631],{"type":63,"value":632},"hostEmail=\u003Cemail>",{"type":63,"value":209},{"type":58,"tag":106,"props":635,"children":636},{},[637,643],{"type":58,"tag":112,"props":638,"children":640},{"className":639},[],[641],{"type":63,"value":642},"secret",{"type":63,"value":644}," -- optional HMAC secret for payload signature verification",{"type":58,"tag":106,"props":646,"children":647},{},[648,654,656,662,664,670],{"type":58,"tag":112,"props":649,"children":651},{"className":650},[],[652],{"type":63,"value":653},"ownedBy",{"type":63,"value":655}," -- ",{"type":58,"tag":112,"props":657,"children":659},{"className":658},[],[660],{"type":63,"value":661},"creator",{"type":63,"value":663}," for personal or ",{"type":58,"tag":112,"props":665,"children":667},{"className":666},[],[668],{"type":63,"value":669},"org",{"type":63,"value":671}," for organization-wide webhooks",{"type":58,"tag":65,"props":673,"children":674},{},[675],{"type":63,"value":676},"Supporting tools:",{"type":58,"tag":170,"props":678,"children":679},{},[680,705],{"type":58,"tag":106,"props":681,"children":682},{},[683,689,691,696,698,703],{"type":58,"tag":112,"props":684,"children":686},{"className":685},[],[687],{"type":63,"value":688},"WEBEX_LIST_WEBHOOKS",{"type":63,"value":690}," -- list all registered webhooks with optional ",{"type":58,"tag":112,"props":692,"children":694},{"className":693},[],[695],{"type":63,"value":402},{"type":63,"value":697}," and ",{"type":58,"tag":112,"props":699,"children":701},{"className":700},[],[702],{"type":63,"value":653},{"type":63,"value":704}," filters",{"type":58,"tag":106,"props":706,"children":707},{},[708,714,716],{"type":58,"tag":112,"props":709,"children":711},{"className":710},[],[712],{"type":63,"value":713},"WEBEX_WEBHOOKS_GET_WEBHOOK",{"type":63,"value":715}," -- inspect a specific webhook by ",{"type":58,"tag":112,"props":717,"children":719},{"className":718},[],[720],{"type":63,"value":721},"webhookId",{"type":58,"tag":65,"props":723,"children":724},{},[725],{"type":63,"value":274},{"type":58,"tag":276,"props":727,"children":728},{},[729],{"type":58,"tag":65,"props":730,"children":731},{},[732,734,740],{"type":63,"value":733},"\"Create a webhook called 'New Messages' that POSTs to ",{"type":58,"tag":82,"props":735,"children":738},{"href":736,"rel":737},"https:\u002F\u002Fmy-app.com\u002Fhook",[86],[739],{"type":63,"value":736},{"type":63,"value":741}," whenever a message is created in room Y2lz...\"",{"type":58,"tag":91,"props":743,"children":744},{},[],{"type":58,"tag":138,"props":746,"children":748},{"id":747},"_4-manage-team-memberships",[749],{"type":63,"value":750},"4. Manage Team Memberships",{"type":58,"tag":65,"props":752,"children":753},{},[754],{"type":63,"value":755},"Add people to Webex teams and optionally grant moderator privileges.",{"type":58,"tag":65,"props":757,"children":758},{},[759,763,764],{"type":58,"tag":74,"props":760,"children":761},{},[762],{"type":63,"value":156},{"type":63,"value":80},{"type":58,"tag":112,"props":765,"children":767},{"className":766},[],[768],{"type":63,"value":769},"WEBEX_MESSAGING_CREATE_TEAM_MEMBERSHIP",{"type":58,"tag":65,"props":771,"children":772},{},[773],{"type":63,"value":168},{"type":58,"tag":170,"props":775,"children":776},{},[777,787,798,809],{"type":58,"tag":106,"props":778,"children":779},{},[780,785],{"type":58,"tag":112,"props":781,"children":783},{"className":782},[],[784],{"type":63,"value":358},{"type":63,"value":786}," -- the team to add the person to (required)",{"type":58,"tag":106,"props":788,"children":789},{},[790,796],{"type":58,"tag":112,"props":791,"children":793},{"className":792},[],[794],{"type":63,"value":795},"personEmail",{"type":63,"value":797}," -- email of the person to add",{"type":58,"tag":106,"props":799,"children":800},{},[801,807],{"type":58,"tag":112,"props":802,"children":804},{"className":803},[],[805],{"type":63,"value":806},"personId",{"type":63,"value":808}," -- Webex person ID (alternative to email)",{"type":58,"tag":106,"props":810,"children":811},{},[812,818,820,826,828,834],{"type":58,"tag":112,"props":813,"children":815},{"className":814},[],[816],{"type":63,"value":817},"isModerator",{"type":63,"value":819}," -- set to ",{"type":58,"tag":112,"props":821,"children":823},{"className":822},[],[824],{"type":63,"value":825},"true",{"type":63,"value":827}," for moderator access (default ",{"type":58,"tag":112,"props":829,"children":831},{"className":830},[],[832],{"type":63,"value":833},"false",{"type":63,"value":209},{"type":58,"tag":65,"props":836,"children":837},{},[838,840,846],{"type":63,"value":839},"Use ",{"type":58,"tag":112,"props":841,"children":843},{"className":842},[],[844],{"type":63,"value":845},"WEBEX_LIST_TEAMS",{"type":63,"value":847}," to discover available teams first.",{"type":58,"tag":65,"props":849,"children":850},{},[851],{"type":63,"value":274},{"type":58,"tag":276,"props":853,"children":854},{},[855],{"type":58,"tag":65,"props":856,"children":857},{},[858,860,866],{"type":63,"value":859},"\"Add ",{"type":58,"tag":82,"props":861,"children":863},{"href":862},"mailto:alice@example.com",[864],{"type":63,"value":865},"alice@example.com",{"type":63,"value":867}," as a moderator to team Y2lz...\"",{"type":58,"tag":91,"props":869,"children":870},{},[],{"type":58,"tag":138,"props":872,"children":874},{"id":873},"_5-audit-room-memberships",[875],{"type":63,"value":876},"5. Audit Room Memberships",{"type":58,"tag":65,"props":878,"children":879},{},[880],{"type":63,"value":881},"Check who is in a room, verify a specific person's membership, or list memberships across teams.",{"type":58,"tag":65,"props":883,"children":884},{},[885,889,890],{"type":58,"tag":74,"props":886,"children":887},{},[888],{"type":63,"value":156},{"type":63,"value":80},{"type":58,"tag":112,"props":891,"children":893},{"className":892},[],[894],{"type":63,"value":895},"WEBEX_MESSAGING_LIST_MEMBERSHIPS",{"type":58,"tag":65,"props":897,"children":898},{},[899],{"type":63,"value":168},{"type":58,"tag":170,"props":901,"children":902},{},[903,913,929,945,955],{"type":58,"tag":106,"props":904,"children":905},{},[906,911],{"type":58,"tag":112,"props":907,"children":909},{"className":908},[],[910],{"type":63,"value":181},{"type":63,"value":912}," -- list all members of a specific room",{"type":58,"tag":106,"props":914,"children":915},{},[916,921,923,928],{"type":58,"tag":112,"props":917,"children":919},{"className":918},[],[920],{"type":63,"value":795},{"type":63,"value":922}," -- check if a person is a member (requires ",{"type":58,"tag":112,"props":924,"children":926},{"className":925},[],[927],{"type":63,"value":181},{"type":63,"value":209},{"type":58,"tag":106,"props":930,"children":931},{},[932,937,939,944],{"type":58,"tag":112,"props":933,"children":935},{"className":934},[],[936],{"type":63,"value":806},{"type":63,"value":938}," -- check by Webex person ID (requires ",{"type":58,"tag":112,"props":940,"children":942},{"className":941},[],[943],{"type":63,"value":181},{"type":63,"value":209},{"type":58,"tag":106,"props":946,"children":947},{},[948,953],{"type":58,"tag":112,"props":949,"children":951},{"className":950},[],[952],{"type":63,"value":358},{"type":63,"value":954}," -- filter by team association",{"type":58,"tag":106,"props":956,"children":957},{},[958,963],{"type":58,"tag":112,"props":959,"children":961},{"className":960},[],[962],{"type":63,"value":402},{"type":63,"value":964}," -- limit results",{"type":58,"tag":65,"props":966,"children":967},{},[968],{"type":63,"value":274},{"type":58,"tag":276,"props":970,"children":971},{},[972],{"type":58,"tag":65,"props":973,"children":974},{},[975],{"type":63,"value":976},"\"List all members of room Y2lz... and tell me who the moderators are\"",{"type":58,"tag":91,"props":978,"children":979},{},[],{"type":58,"tag":138,"props":981,"children":983},{"id":982},"_6-search-and-look-up-people",[984],{"type":63,"value":985},"6. Search and Look Up People",{"type":58,"tag":65,"props":987,"children":988},{},[989],{"type":63,"value":990},"Look up people in your Webex organization by email, display name, or ID.",{"type":58,"tag":65,"props":992,"children":993},{},[994,998,999],{"type":58,"tag":74,"props":995,"children":996},{},[997],{"type":63,"value":156},{"type":63,"value":80},{"type":58,"tag":112,"props":1000,"children":1002},{"className":1001},[],[1003],{"type":63,"value":1004},"WEBEX_PEOPLE_LIST_PEOPLE",{"type":58,"tag":65,"props":1006,"children":1007},{},[1008],{"type":63,"value":1009},"Use to resolve names to person IDs before sending direct messages or adding team members.",{"type":58,"tag":65,"props":1011,"children":1012},{},[1013],{"type":63,"value":274},{"type":58,"tag":276,"props":1015,"children":1016},{},[1017],{"type":58,"tag":65,"props":1018,"children":1019},{},[1020,1022,1028],{"type":63,"value":1021},"\"Find the Webex person ID for ",{"type":58,"tag":82,"props":1023,"children":1025},{"href":1024},"mailto:bob@company.com",[1026],{"type":63,"value":1027},"bob@company.com",{"type":63,"value":1029},"\"",{"type":58,"tag":91,"props":1031,"children":1032},{},[],{"type":58,"tag":95,"props":1034,"children":1036},{"id":1035},"known-pitfalls",[1037],{"type":63,"value":1038},"Known Pitfalls",{"type":58,"tag":1040,"props":1041,"children":1042},"table",{},[1043,1062],{"type":58,"tag":1044,"props":1045,"children":1046},"thead",{},[1047],{"type":58,"tag":1048,"props":1049,"children":1050},"tr",{},[1051,1057],{"type":58,"tag":1052,"props":1053,"children":1054},"th",{},[1055],{"type":63,"value":1056},"Pitfall",{"type":58,"tag":1052,"props":1058,"children":1059},{},[1060],{"type":63,"value":1061},"Details",{"type":58,"tag":1063,"props":1064,"children":1065},"tbody",{},[1066,1080,1106,1126,1139,1171,1198,1238,1259],{"type":58,"tag":1048,"props":1067,"children":1068},{},[1069,1075],{"type":58,"tag":1070,"props":1071,"children":1072},"td",{},[1073],{"type":63,"value":1074},"Webhook auto-disable",{"type":58,"tag":1070,"props":1076,"children":1077},{},[1078],{"type":63,"value":1079},"Target URL must respond with HTTP 2xx; 100 failures in 5 minutes disables the webhook automatically",{"type":58,"tag":1048,"props":1081,"children":1082},{},[1083,1088],{"type":58,"tag":1070,"props":1084,"children":1085},{},[1086],{"type":63,"value":1087},"Message size limit",{"type":58,"tag":1070,"props":1089,"children":1090},{},[1091,1093,1098,1099,1104],{"type":63,"value":1092},"Both ",{"type":58,"tag":112,"props":1094,"children":1096},{"className":1095},[],[1097],{"type":63,"value":63},{"type":63,"value":697},{"type":58,"tag":112,"props":1100,"children":1102},{"className":1101},[],[1103],{"type":63,"value":228},{"type":63,"value":1105}," have a 7439-byte maximum",{"type":58,"tag":1048,"props":1107,"children":1108},{},[1109,1114],{"type":58,"tag":1070,"props":1110,"children":1111},{},[1112],{"type":63,"value":1113},"One file per message",{"type":58,"tag":1070,"props":1115,"children":1116},{},[1117,1119,1124],{"type":63,"value":1118},"The ",{"type":58,"tag":112,"props":1120,"children":1122},{"className":1121},[],[1123],{"type":63,"value":245},{"type":63,"value":1125}," array accepts a list but only one attachment is actually supported per message",{"type":58,"tag":1048,"props":1127,"children":1128},{},[1129,1134],{"type":58,"tag":1070,"props":1130,"children":1131},{},[1132],{"type":63,"value":1133},"One card per message",{"type":58,"tag":1070,"props":1135,"children":1136},{},[1137],{"type":63,"value":1138},"Only one Adaptive Card attachment is supported per message",{"type":58,"tag":1048,"props":1140,"children":1141},{},[1142,1147],{"type":58,"tag":1070,"props":1143,"children":1144},{},[1145],{"type":63,"value":1146},"Mutually exclusive targets",{"type":58,"tag":1070,"props":1148,"children":1149},{},[1150,1155,1156,1161,1163,1169],{"type":58,"tag":112,"props":1151,"children":1153},{"className":1152},[],[1154],{"type":63,"value":181},{"type":63,"value":697},{"type":58,"tag":112,"props":1157,"children":1159},{"className":1158},[],[1160],{"type":63,"value":200},{"type":63,"value":1162},"\u002F",{"type":58,"tag":112,"props":1164,"children":1166},{"className":1165},[],[1167],{"type":63,"value":1168},"toPersonId",{"type":63,"value":1170}," cannot be used together when sending messages",{"type":58,"tag":1048,"props":1172,"children":1173},{},[1174,1179],{"type":58,"tag":1070,"props":1175,"children":1176},{},[1177],{"type":63,"value":1178},"Room update requires title",{"type":58,"tag":1070,"props":1180,"children":1181},{},[1182,1188,1190,1196],{"type":58,"tag":112,"props":1183,"children":1185},{"className":1184},[],[1186],{"type":63,"value":1187},"WEBEX_UPDATE_ROOM",{"type":63,"value":1189}," always requires the ",{"type":58,"tag":112,"props":1191,"children":1193},{"className":1192},[],[1194],{"type":63,"value":1195},"title",{"type":63,"value":1197}," parameter, even when only changing lock status or team",{"type":58,"tag":1048,"props":1199,"children":1200},{},[1201,1206],{"type":58,"tag":1070,"props":1202,"children":1203},{},[1204],{"type":63,"value":1205},"orgPublicSpaces conflicts",{"type":58,"tag":1070,"props":1207,"children":1208},{},[1209,1211,1217,1219,1224,1225,1230,1231,1236],{"type":63,"value":1210},"Cannot combine ",{"type":58,"tag":112,"props":1212,"children":1214},{"className":1213},[],[1215],{"type":63,"value":1216},"orgPublicSpaces",{"type":63,"value":1218}," with ",{"type":58,"tag":112,"props":1220,"children":1222},{"className":1221},[],[1223],{"type":63,"value":358},{"type":63,"value":379},{"type":58,"tag":112,"props":1226,"children":1228},{"className":1227},[],[1229],{"type":63,"value":333},{"type":63,"value":387},{"type":58,"tag":112,"props":1232,"children":1234},{"className":1233},[],[1235],{"type":63,"value":369},{"type":63,"value":1237}," when listing rooms",{"type":58,"tag":1048,"props":1239,"children":1240},{},[1241,1246],{"type":58,"tag":1070,"props":1242,"children":1243},{},[1244],{"type":63,"value":1245},"Webhook read scope",{"type":58,"tag":1070,"props":1247,"children":1248},{},[1249,1251,1257],{"type":63,"value":1250},"Creating a webhook requires ",{"type":58,"tag":112,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":63,"value":1256},"read",{"type":63,"value":1258}," scope on the monitored resource type",{"type":58,"tag":1048,"props":1260,"children":1261},{},[1262,1267],{"type":58,"tag":1070,"props":1263,"children":1264},{},[1265],{"type":63,"value":1266},"Membership filter requires roomId",{"type":58,"tag":1070,"props":1268,"children":1269},{},[1270,1275,1276,1281,1283,1288],{"type":58,"tag":112,"props":1271,"children":1273},{"className":1272},[],[1274],{"type":63,"value":795},{"type":63,"value":697},{"type":58,"tag":112,"props":1277,"children":1279},{"className":1278},[],[1280],{"type":63,"value":806},{"type":63,"value":1282}," filters in list memberships require ",{"type":58,"tag":112,"props":1284,"children":1286},{"className":1285},[],[1287],{"type":63,"value":181},{"type":63,"value":1289}," unless you are a Compliance Officer",{"type":58,"tag":91,"props":1291,"children":1292},{},[],{"type":58,"tag":95,"props":1294,"children":1296},{"id":1295},"quick-reference",[1297],{"type":63,"value":1298},"Quick Reference",{"type":58,"tag":1040,"props":1300,"children":1301},{},[1302,1323],{"type":58,"tag":1044,"props":1303,"children":1304},{},[1305],{"type":58,"tag":1048,"props":1306,"children":1307},{},[1308,1313,1318],{"type":58,"tag":1052,"props":1309,"children":1310},{},[1311],{"type":63,"value":1312},"Action",{"type":58,"tag":1052,"props":1314,"children":1315},{},[1316],{"type":63,"value":1317},"Tool Slug",{"type":58,"tag":1052,"props":1319,"children":1320},{},[1321],{"type":63,"value":1322},"Key Params",{"type":58,"tag":1063,"props":1324,"children":1325},{},[1326,1368,1404,1428,1458,1484,1509,1551,1581,1605,1641,1677,1698],{"type":58,"tag":1048,"props":1327,"children":1328},{},[1329,1334,1342],{"type":58,"tag":1070,"props":1330,"children":1331},{},[1332],{"type":63,"value":1333},"Send message",{"type":58,"tag":1070,"props":1335,"children":1336},{},[1337],{"type":58,"tag":112,"props":1338,"children":1340},{"className":1339},[],[1341],{"type":63,"value":163},{"type":58,"tag":1070,"props":1343,"children":1344},{},[1345,1350,1351,1356,1357,1362,1363],{"type":58,"tag":112,"props":1346,"children":1348},{"className":1347},[],[1349],{"type":63,"value":181},{"type":63,"value":379},{"type":58,"tag":112,"props":1352,"children":1354},{"className":1353},[],[1355],{"type":63,"value":63},{"type":63,"value":1162},{"type":58,"tag":112,"props":1358,"children":1360},{"className":1359},[],[1361],{"type":63,"value":228},{"type":63,"value":379},{"type":58,"tag":112,"props":1364,"children":1366},{"className":1365},[],[1367],{"type":63,"value":200},{"type":58,"tag":1048,"props":1369,"children":1370},{},[1371,1376,1384],{"type":58,"tag":1070,"props":1372,"children":1373},{},[1374],{"type":63,"value":1375},"List rooms",{"type":58,"tag":1070,"props":1377,"children":1378},{},[1379],{"type":58,"tag":112,"props":1380,"children":1382},{"className":1381},[],[1383],{"type":63,"value":189},{"type":58,"tag":1070,"props":1385,"children":1386},{},[1387,1392,1393,1398,1399],{"type":58,"tag":112,"props":1388,"children":1390},{"className":1389},[],[1391],{"type":63,"value":333},{"type":63,"value":379},{"type":58,"tag":112,"props":1394,"children":1396},{"className":1395},[],[1397],{"type":63,"value":369},{"type":63,"value":379},{"type":58,"tag":112,"props":1400,"children":1402},{"className":1401},[],[1403],{"type":63,"value":402},{"type":58,"tag":1048,"props":1405,"children":1406},{},[1407,1412,1420],{"type":58,"tag":1070,"props":1408,"children":1409},{},[1410],{"type":63,"value":1411},"Get room details",{"type":58,"tag":1070,"props":1413,"children":1414},{},[1415],{"type":58,"tag":112,"props":1416,"children":1418},{"className":1417},[],[1419],{"type":63,"value":415},{"type":58,"tag":1070,"props":1421,"children":1422},{},[1423],{"type":58,"tag":112,"props":1424,"children":1426},{"className":1425},[],[1427],{"type":63,"value":181},{"type":58,"tag":1048,"props":1429,"children":1430},{},[1431,1436,1444],{"type":58,"tag":1070,"props":1432,"children":1433},{},[1434],{"type":63,"value":1435},"Update room",{"type":58,"tag":1070,"props":1437,"children":1438},{},[1439],{"type":58,"tag":112,"props":1440,"children":1442},{"className":1441},[],[1443],{"type":63,"value":1187},{"type":58,"tag":1070,"props":1445,"children":1446},{},[1447,1452,1453],{"type":58,"tag":112,"props":1448,"children":1450},{"className":1449},[],[1451],{"type":63,"value":181},{"type":63,"value":379},{"type":58,"tag":112,"props":1454,"children":1456},{"className":1455},[],[1457],{"type":63,"value":1195},{"type":58,"tag":1048,"props":1459,"children":1460},{},[1461,1466,1475],{"type":58,"tag":1070,"props":1462,"children":1463},{},[1464],{"type":63,"value":1465},"Delete message",{"type":58,"tag":1070,"props":1467,"children":1468},{},[1469],{"type":58,"tag":112,"props":1470,"children":1472},{"className":1471},[],[1473],{"type":63,"value":1474},"WEBEX_MESSAGING_DELETE_MESSAGE",{"type":58,"tag":1070,"props":1476,"children":1477},{},[1478],{"type":58,"tag":112,"props":1479,"children":1481},{"className":1480},[],[1482],{"type":63,"value":1483},"messageId",{"type":58,"tag":1048,"props":1485,"children":1486},{},[1487,1492,1501],{"type":58,"tag":1070,"props":1488,"children":1489},{},[1490],{"type":63,"value":1491},"Get message details",{"type":58,"tag":1070,"props":1493,"children":1494},{},[1495],{"type":58,"tag":112,"props":1496,"children":1498},{"className":1497},[],[1499],{"type":63,"value":1500},"WEBEX_MESSAGING_GET_MESSAGE_DETAILS",{"type":58,"tag":1070,"props":1502,"children":1503},{},[1504],{"type":58,"tag":112,"props":1505,"children":1507},{"className":1506},[],[1508],{"type":63,"value":1483},{"type":58,"tag":1048,"props":1510,"children":1511},{},[1512,1517,1525],{"type":58,"tag":1070,"props":1513,"children":1514},{},[1515],{"type":63,"value":1516},"Create webhook",{"type":58,"tag":1070,"props":1518,"children":1519},{},[1520],{"type":58,"tag":112,"props":1521,"children":1523},{"className":1522},[],[1524],{"type":63,"value":457},{"type":58,"tag":1070,"props":1526,"children":1527},{},[1528,1533,1534,1539,1540,1545,1546],{"type":58,"tag":112,"props":1529,"children":1531},{"className":1530},[],[1532],{"type":63,"value":473},{"type":63,"value":379},{"type":58,"tag":112,"props":1535,"children":1537},{"className":1536},[],[1538],{"type":63,"value":484},{"type":63,"value":379},{"type":58,"tag":112,"props":1541,"children":1543},{"className":1542},[],[1544],{"type":63,"value":495},{"type":63,"value":379},{"type":58,"tag":112,"props":1547,"children":1549},{"className":1548},[],[1550],{"type":63,"value":556},{"type":58,"tag":1048,"props":1552,"children":1553},{},[1554,1559,1567],{"type":58,"tag":1070,"props":1555,"children":1556},{},[1557],{"type":63,"value":1558},"List webhooks",{"type":58,"tag":1070,"props":1560,"children":1561},{},[1562],{"type":58,"tag":112,"props":1563,"children":1565},{"className":1564},[],[1566],{"type":63,"value":688},{"type":58,"tag":1070,"props":1568,"children":1569},{},[1570,1575,1576],{"type":58,"tag":112,"props":1571,"children":1573},{"className":1572},[],[1574],{"type":63,"value":402},{"type":63,"value":379},{"type":58,"tag":112,"props":1577,"children":1579},{"className":1578},[],[1580],{"type":63,"value":653},{"type":58,"tag":1048,"props":1582,"children":1583},{},[1584,1589,1597],{"type":58,"tag":1070,"props":1585,"children":1586},{},[1587],{"type":63,"value":1588},"Get webhook",{"type":58,"tag":1070,"props":1590,"children":1591},{},[1592],{"type":58,"tag":112,"props":1593,"children":1595},{"className":1594},[],[1596],{"type":63,"value":713},{"type":58,"tag":1070,"props":1598,"children":1599},{},[1600],{"type":58,"tag":112,"props":1601,"children":1603},{"className":1602},[],[1604],{"type":63,"value":721},{"type":58,"tag":1048,"props":1606,"children":1607},{},[1608,1613,1621],{"type":58,"tag":1070,"props":1609,"children":1610},{},[1611],{"type":63,"value":1612},"Add team member",{"type":58,"tag":1070,"props":1614,"children":1615},{},[1616],{"type":58,"tag":112,"props":1617,"children":1619},{"className":1618},[],[1620],{"type":63,"value":769},{"type":58,"tag":1070,"props":1622,"children":1623},{},[1624,1629,1630,1635,1636],{"type":58,"tag":112,"props":1625,"children":1627},{"className":1626},[],[1628],{"type":63,"value":358},{"type":63,"value":379},{"type":58,"tag":112,"props":1631,"children":1633},{"className":1632},[],[1634],{"type":63,"value":795},{"type":63,"value":379},{"type":58,"tag":112,"props":1637,"children":1639},{"className":1638},[],[1640],{"type":63,"value":817},{"type":58,"tag":1048,"props":1642,"children":1643},{},[1644,1649,1657],{"type":58,"tag":1070,"props":1645,"children":1646},{},[1647],{"type":63,"value":1648},"List memberships",{"type":58,"tag":1070,"props":1650,"children":1651},{},[1652],{"type":58,"tag":112,"props":1653,"children":1655},{"className":1654},[],[1656],{"type":63,"value":895},{"type":58,"tag":1070,"props":1658,"children":1659},{},[1660,1665,1666,1671,1672],{"type":58,"tag":112,"props":1661,"children":1663},{"className":1662},[],[1664],{"type":63,"value":181},{"type":63,"value":379},{"type":58,"tag":112,"props":1667,"children":1669},{"className":1668},[],[1670],{"type":63,"value":795},{"type":63,"value":379},{"type":58,"tag":112,"props":1673,"children":1675},{"className":1674},[],[1676],{"type":63,"value":402},{"type":58,"tag":1048,"props":1678,"children":1679},{},[1680,1685,1693],{"type":58,"tag":1070,"props":1681,"children":1682},{},[1683],{"type":63,"value":1684},"List people",{"type":58,"tag":1070,"props":1686,"children":1687},{},[1688],{"type":58,"tag":112,"props":1689,"children":1691},{"className":1690},[],[1692],{"type":63,"value":1004},{"type":58,"tag":1070,"props":1694,"children":1695},{},[1696],{"type":63,"value":1697},"email, displayName, ID filters",{"type":58,"tag":1048,"props":1699,"children":1700},{},[1701,1706,1714],{"type":58,"tag":1070,"props":1702,"children":1703},{},[1704],{"type":63,"value":1705},"List teams",{"type":58,"tag":1070,"props":1707,"children":1708},{},[1709],{"type":58,"tag":112,"props":1710,"children":1712},{"className":1711},[],[1713],{"type":63,"value":845},{"type":58,"tag":1070,"props":1715,"children":1716},{},[1717],{"type":58,"tag":112,"props":1718,"children":1720},{"className":1719},[],[1721],{"type":63,"value":402},{"type":58,"tag":91,"props":1723,"children":1724},{},[],{"type":58,"tag":65,"props":1726,"children":1727},{},[1728],{"type":58,"tag":1729,"props":1730,"children":1731},"em",{},[1732,1734],{"type":63,"value":1733},"Powered by ",{"type":58,"tag":82,"props":1735,"children":1738},{"href":1736,"rel":1737},"https:\u002F\u002Fcomposio.dev",[86],[1739],{"type":63,"value":10},{"items":1741,"total":1823},[1742,1756,1770,1779,1789,1801,1810],{"slug":1743,"name":1744,"fn":1745,"description":1746,"org":1747,"tags":1748,"stars":25,"repoUrl":26,"updatedAt":1755},"21risk-automation","-21risk-automation","automate 21risk compliance and safety tasks","Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1749,1750,1751,1752],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1753,"slug":1754,"type":15},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":1757,"name":1758,"fn":1759,"description":1760,"org":1761,"tags":1762,"stars":25,"repoUrl":26,"updatedAt":1769},"2chat-automation","-2chat-automation","automate 2chat messaging tasks","Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1763,1764,1765,1766],{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"name":1767,"slug":1768,"type":15},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":1771,"name":1771,"fn":1772,"description":1773,"org":1774,"tags":1775,"stars":25,"repoUrl":26,"updatedAt":1778},"ably-automation","automate Ably tasks with Composio","Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1776,1777],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},"2026-07-12T08:09:55.453088",{"slug":1780,"name":1780,"fn":1781,"description":1782,"org":1783,"tags":1784,"stars":25,"repoUrl":26,"updatedAt":1788},"abstract-automation","automate Abstract tasks via Composio","Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1785,1786,1787],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},"2026-07-15T05:45:16.470309",{"slug":1790,"name":1790,"fn":1791,"description":1792,"org":1793,"tags":1794,"stars":25,"repoUrl":26,"updatedAt":1800},"abuselpdb-automation","automate Abuselpdb tasks via Composio","Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1795,1796,1797],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":1798,"slug":1799,"type":15},"Security","security","2026-07-15T05:56:20.013366",{"slug":1802,"name":1802,"fn":1803,"description":1804,"org":1805,"tags":1806,"stars":25,"repoUrl":26,"updatedAt":1809},"abyssale-automation","automate Abyssale tasks via Composio","Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1807,1808],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},"2026-07-15T05:54:50.762889",{"slug":1811,"name":1811,"fn":1812,"description":1813,"org":1814,"tags":1815,"stars":25,"repoUrl":26,"updatedAt":1822},"accelo-automation","automate Accelo tasks via Composio","Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1816,1817,1818,1821],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1819,"slug":1820,"type":15},"CRM","crm",{"name":20,"slug":21,"type":15},"2026-07-15T05:48:43.429136",860,{"items":1825,"total":1929},[1826,1833,1840,1845,1851,1857,1862,1869,1883,1896,1909,1919],{"slug":1743,"name":1744,"fn":1745,"description":1746,"org":1827,"tags":1828,"stars":25,"repoUrl":26,"updatedAt":1755},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1829,1830,1831,1832],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1753,"slug":1754,"type":15},{"slug":1757,"name":1758,"fn":1759,"description":1760,"org":1834,"tags":1835,"stars":25,"repoUrl":26,"updatedAt":1769},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1836,1837,1838,1839],{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"name":1767,"slug":1768,"type":15},{"slug":1771,"name":1771,"fn":1772,"description":1773,"org":1841,"tags":1842,"stars":25,"repoUrl":26,"updatedAt":1778},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1843,1844],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":1780,"name":1780,"fn":1781,"description":1782,"org":1846,"tags":1847,"stars":25,"repoUrl":26,"updatedAt":1788},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1848,1849,1850],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"slug":1790,"name":1790,"fn":1791,"description":1792,"org":1852,"tags":1853,"stars":25,"repoUrl":26,"updatedAt":1800},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1854,1855,1856],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":1798,"slug":1799,"type":15},{"slug":1802,"name":1802,"fn":1803,"description":1804,"org":1858,"tags":1859,"stars":25,"repoUrl":26,"updatedAt":1809},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1860,1861],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"slug":1811,"name":1811,"fn":1812,"description":1813,"org":1863,"tags":1864,"stars":25,"repoUrl":26,"updatedAt":1822},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1865,1866,1867,1868],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1819,"slug":1820,"type":15},{"name":20,"slug":21,"type":15},{"slug":1870,"name":1870,"fn":1871,"description":1872,"org":1873,"tags":1874,"stars":25,"repoUrl":26,"updatedAt":1882},"accredible-certificates-automation","automate Accredible certificate management","Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1875,1876,1879],{"name":17,"slug":18,"type":15},{"name":1877,"slug":1878,"type":15},"Documents","documents",{"name":1880,"slug":1881,"type":15},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":1884,"name":1884,"fn":1885,"description":1886,"org":1887,"tags":1888,"stars":25,"repoUrl":26,"updatedAt":1895},"acculynx-automation","automate Acculynx construction management tasks","Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1889,1890,1891,1892],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1893,"slug":1894,"type":15},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":1897,"name":1897,"fn":1898,"description":1899,"org":1900,"tags":1901,"stars":25,"repoUrl":26,"updatedAt":1908},"active-campaign-automation","automate ActiveCampaign marketing and CRM tasks","Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1902,1903,1904,1905],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1819,"slug":1820,"type":15},{"name":1906,"slug":1907,"type":15},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":1910,"name":1910,"fn":1911,"description":1912,"org":1913,"tags":1914,"stars":25,"repoUrl":26,"updatedAt":1918},"addresszen-automation","automate Addresszen address validation","Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1915,1916,1917],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},"2026-07-15T05:47:51.742515",{"slug":1920,"name":1920,"fn":1921,"description":1922,"org":1923,"tags":1924,"stars":25,"repoUrl":26,"updatedAt":1928},"adobe-automation","automate Adobe tasks via Composio","Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1925,1926,1927],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},"2026-07-15T05:45:05.303254",863]