integration-service
latest
false
- 入门指南
- 通知
- 许可
- 故障排除
- 连接器生成器
- Act! 365
- ActiveCampaign
- Active Directory - 预览版
- Adobe Acrobat Sign
- Adobe PDF 服务
- Amazon Bedrock
- Amazon Connect
- Amazon Polly
- 亚马逊 SES
- Amazon Transcribe
- Amazon Web Services
- Anthropic Claude
- Asana
- AWeber
- Azure AI 文档智能
- Azure Maps
- BambooHR
- Box
- Brevo
- Calendly
- Campaign Monitor
- Cisco Webex Teams
- Citrix Hypervisor
- Citrix ShareFile
- 清除位
- Confluence Cloud
- Constant Contact
- Coupa
- Customer.io
- Datadog
- Deputy
- Discord
- DocuSign
- 水滴
- Dropbox
- Dropbox Business
- Egnyte
- Epic FHIR R4 - 预览
- Eventbrite
- 汇率
- Exchange Server - 预览
- Expensify
- Facebook
- Freshbooks
- Freshdesk
- Freshservice
- 获取响应
- GitHub
- Gmail
- 谷歌云平台
- Google 文档
- Google 云端硬盘
- Google Maps
- Google 表格
- Google 语音转文本
- Google 文本转语音
- Google Tasks - 预览
- Google Vertex
- Google Vision - 预览
- Google WorkSpace - 预览版
- GoToWebinar
- Greenhouse
- Hootsuite
- HTTP Webhook - 预览
- 关于 HTTP Webhook 连接器
- 使用 Webhook 连接器
- 监控
- HubSpot CRM
- HubSpot Marketing
- HyperV - 预览
- iContact
- Insightly CRM
- Intercom
- Jira
- Keap
- Klaviyo
- LinkedIn
- Mailchimp
- Mailgun
- Mailjet
- MailerLite
- Marketo
- Microsoft 365
- Microsoft Azure
- Microsoft Azure Active Directory
- Microsoft Azure OpenAI
- Microsoft Dynamics 365 CRM
- Microsoft OneDrive 和 SharePoint
- Microsoft Outlook 365
- Microsoft Sentiment
- Microsoft Teams
- Microsoft Translator
- Microsoft Vision
- Miro
- NetIQ eDirectory
- 奥克塔
- OpenAI
- Oracle Eloqua
- Oracle NetSuite
- PagerDuty
- 贝宝
- PDFMonkey
- Pinecone
- Pipedrive
- QuickBooksOnline
- Quip
- Salesforce
- Salesforce Marketing Cloud
- SAP BAPI - 预览
- SAP Cloud for Customer
- SAP Concur
- SendGrid
- ServiceNow
- Shopify
- Slack
- SmartRecruiters
- Smartsheet
- Snowflake
- Stripe
- Sugar Enterprise
- Sugar Professional
- Sugar Sell
- Sugar Serve
- System Center - 预览
- 探戈卡
- Todoist
- Trello
- Twilio
- UiPath 生成式 AI 活动
- X(以前称为 Twitter)
- Xero
- WatsonX.ai
- WhatsApp Business
- WOO COMMERCE
- 可行
- Workday
- Workday REST - 预览
- VMware ESXi vSphere
- YouTube
- Zendesk
- Zoho Campaigns
- Zoho Desk
- Zoho Mail
- 缩放
- Zoom 信息
使用 Webhook 连接器
重要 :
请注意,此内容已使用机器翻译进行了本地化。
Integration Service 中提供的连接器包采用的是机器翻译的译文。
Integration Service 用户指南
Last updated 2024年10月22日
使用 Webhook 连接器
- 在 Integration Service 目录中找到 HTTP Webhook 连接器。
- 选择“连接到 HTTP Webhook” 。
- 在连接屏幕中,您必须提供应用程序,例如 UiPath 论坛。
-
在 Studio 中,从 Webhook 事件启动工作流。 选择“发生的Webhook 事件”作为自动化的触发器。
备注:
连接只是一个引用,可以跨工作流重用。 它与同一个面向公众的 URL 绑定。
您可以在文件夹中创建此连接,以便其他人也可以基于相同的传入 Webhook 事件构建工作流。
供应商应用程序发送不同的有效负载结构或有效负载类型,具体取决于正在处理的事件。 所有这些内容都可以通过触发器活动公开的同一 URL 发送。 您可以通过在流程开始时定义筛选器来区分有效负载。
例如,对于论坛上
new_post, updated_post, admin_removal
的有效负载,其包含event_type
,您可以触发特定的已发布工作流或忽略其他工作流。 筛选可提供对供应商在 Webhook 上发送的正文和标头的完全访问权限。
注意:使用小写字母和引号定义正文和标头筛选器。
从 HTTP Webhook 事件开始发布工作流,以激活面向公众的 URL。 然后,您可以通过触发供应商应用程序中的事件或直接向 URL 发送
curl
命令来测试这一点:
curl -X POST https://cloud.uipath.com/{entity_url} -d "example
curl call"
curl -X POST https://cloud.uipath.com/{entity_url} -d "example
curl call"
当 Integration Service 接受事件时,它会使用以下 JSON 有效负载进行响应:
{ "webhookEventId": "wr-4ad55717e1.a7bbf1e8-72a1-4371-82d2-d{example}", "correlationId": "384d496c-2f6d-{example}" }
{ "webhookEventId": "wr-4ad55717e1.a7bbf1e8-72a1-4371-82d2-d{example}", "correlationId": "384d496c-2f6d-{example}" }
备注:
此有效负载可用于测试,但在工作流的任何位置都不是必需的。