假设我有一些python代码,它们调用API端点并在X应用程序中创建对象。成功执行将返回新创建对象的ID。
我希望Zapier接收输出(返回的数据),并允许我在后续步骤中将其用作input_data
。
可能吗?
正在研究
答案 0 :(得分:1)
根据https://zapier.com/help/how-get-started-code-python-zapier/ 您只需显式地返回字典或从代码中填充“输出”变量
return {'id': 1234, 'hello': 'world!', 'name': input_data['name']}
或
output = {'id': 1234, 'hello': 'world!', 'name': input_data['name']}
下一个Zap步骤将使用id,hello,name作为潜在的输入参数