如何根据 Integromat 应用程序中的另一个查询响应制作动态输入参数?
How to make dynamic input parameters based on another query response in an Integromat app?
我正在实施一个 API,它有一个端点,其中 returns 对象的自定义字段列表,例如公司、领导等。
创建潜在客户时,用户应该能够在硬编码字段旁边输入自定义字段。
如何在模块的可映射参数中动态完成此操作?
您可以创建一个 RPC(通过 API 获取动态输入字段的过程)并将其与静态参数结合,如下例所示:
可映射参数:
[
{
"name": "id",
"type": "uinteger",
"label": "Static parameter"
},
"rpc://getDynamicFields"
]
参考:https://docs.integromat.com/apps/structure-blocks/expect#rpc
如何创建 RPC,您可以在此处找到:https://docs.integromat.com/apps/app-structure/rpcs#fields-rpc
我正在实施一个 API,它有一个端点,其中 returns 对象的自定义字段列表,例如公司、领导等。 创建潜在客户时,用户应该能够在硬编码字段旁边输入自定义字段。 如何在模块的可映射参数中动态完成此操作?
您可以创建一个 RPC(通过 API 获取动态输入字段的过程)并将其与静态参数结合,如下例所示:
可映射参数:
[
{
"name": "id",
"type": "uinteger",
"label": "Static parameter"
},
"rpc://getDynamicFields"
]
参考:https://docs.integromat.com/apps/structure-blocks/expect#rpc
如何创建 RPC,您可以在此处找到:https://docs.integromat.com/apps/app-structure/rpcs#fields-rpc