选择操作
操作是一种针对第三方 API 执行的操作;可以是 READ
或 WRITE
。
一旦您选择了应用,我们可以通过向 /actions
端点 发送请求来获取所选应用的可用操作列表:
// GET /actions?app=4b3920d6-1d5a-4071-b837-9383dc511b80&action_type=READ
{
"data": [
{
"type": "action",
"id": "core:853266",
"action_type": "read",
"title": "New Lead",
"description": "Triggers when a new lead is added to SuperExampleCRM",
"is_instant": true
},
{
"type": "action",
"id": "uag:1f188536-6dd0-4172-8414-2b90914ddee9",
"action_type": "read",
"title": "New Deal",
"description": "Triggers when a new deal is added to SuperExampleCRM",
"is_instant": false
}
]
}
在 Zapier 生态系统中,READ
和 WRITE
分别映射到 触发器 和 操作。
用户可以从中选择他们希望用作 Zap 触发器的操作。id
字段可以在其他几个端点中被接受。
希望将您的体验集中在少数几个操作上?请查看硬编码操作。