Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Slight correction to #2, design decision to be consistent with REST API. For example, a call to Get Multiple Leads by Filter Type returns null for non-existent lead fields. Here is an example with non-existent field "leadRole" for a given lead id "318581":GET /rest/v1/leads.json?filterType=id&filt...
The field names are available in the export that you can do from the Marketo UI.
1. Correct, using bulk you would have to pull leads in 30 day increments. I have created an enhancment request to increase the date range to 31 days.2. This design choice is to maintain consistency with bulk lead export from within the Marketo UI. i.e. a precedent had been set3. I am unable to rep...
Hello Kurt,HTTP compression (gzip) is supported by bulk extract leads and activities. When calling either Get Export Lead File, or Get Export Activity File endpoints, simply add the HTTP header "Accept-Ecoding: gzip" and the response body will be gzipped.curl -H 'Accept-Encoding: gzip' 'https://123...
Your assumption is correct, specifying CSV, TSV, or SSV in format parameter is what is meant by "export to spreadsheet". Exporting as JSON is not supported.
Hello Alex,To tell what fields are available in an instance, call the Describe endpoint.If these fields are not present, it may be that your partner sandbox is not provisioned with Social application. You can determine this by going to Marketing Activities, selecting any program, right-click, New L...
Here is an example that adds two leads to a list. The listId is 3373. The leadId's are 318594 and 31895. ==Request==POST /rest/v1/lists/3373/leads.json{ "input":[ { "id": "318594" }, { "id": "31895" } ]}==Response=={ "requestId": "137a3#15c404678cd", "...
Instead of create a Sales Person, I think you really want to create a Lead? If so, then use the Sync Leads endpoint to create a Lead, then you can view the lead by going to Lead Database > Default > System SmartLists > All Leads.
The "Query API" link that you provided refers to Sales Persons. I believe that what you really want are Leads? If so, you have 3 choices:Call Get Lead Activities and filter on "New Lead" activity type. See blog post here.If the Leads are in a static list, you can get them all by calling Get Leads...
Hello Chris,Your code to generate the signature looks correct, so it is hard to say what is happening. I recommend posting the exact error that you are getting back. Another approach is to generate the timestamp and hmac using sites like these:1. Timestamp Generator / Converter - Timestampgenerato...