Marketo API自定义数据

时间:2015-08-18 13:26:46

标签: json api marketo

我正在使用Marketo API V1从客户的Marketo帐户获取潜在客户数据。我已经成功连接到API(通过他们的文档)。

我可以获得单个潜在客户的数据,但它只显示默认数据(id,firstName,lastName,email),我知道有很多自定义数据字段(公司,称呼,jobTitle等),但这样做未在API中显示 - 您知道我如何访问此自定义数据吗?

以下是我正在使用的API网址,它可以正常工作,但不显示我需要的所有数据:

https://<<url>>/rest/v1/leads.json?access_token=<<token>>&filterType=email&filterValues=oliver@test.com

返回:

{"requestId":"1261b#14f40fc3156","result":[{"id":2755951,"updatedAt":"2015-08-18T10:58:42Z","lastName":"wells","email":"oliver@test.com","createdAt":"2015-06-02T09:36:48Z","firstName":"oliver"}],"success":true}

非常感谢!

1 个答案:

答案 0 :(得分:2)

您需要包含一个参数'fields',它有一个逗号分隔的字段名称列表,用于检索给定的字段集:http://developers.marketo.com/documentation/rest/get-multiple-leads-by-filter-type/参见示例2,那里。