如何在Marketo中使用REST API将潜在客户作为成员添加到程序中?
我使用REST API创建了文件夹,程序和潜在客户。
现在我想通过将ID作为成员添加到程序中来添加特定的潜在客户。
如何使用REST API执行此操作,还是需要使用其他方法?
请告诉我。
答案 0 :(得分:0)
使用“更改潜在客户计划状态”结束点:http://developers.marketo.com/rest-api/endpoint-reference/lead-database-endpoint-reference/#!/Leads/changeLeadProgramStatusUsingPOST
示例电话:
发布/rest/v1/leads/programs/{programId}/status.json
data={
"status": "Registered",
"input": [
{"id": 123}
]
}
因此,您最多可以添加300个潜在客户ID,但一次只能添加1个状态(对于1个计划)。