1

我正在实现一个 API,它有一个端点,该端点返回公司、潜在客户等对象的自定义字段列表。创建潜在客户时,用户应该能够在硬编码的字段旁边输入自定义字段。这如何在模块的可映射参数中动态完成?

4

1 回答 1

0

您可以创建一个 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

于 2020-10-06T12:55:41.413 回答