Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
If anyone is trying to update users, not leads the format for /management/v1/users/{userid}/update.json is yyyyMMdd'T'HH:mm:ss.SSS't'ZExample: 20241118T14:29:56.222t+0000Note that the time-zone does not contain the colon and Z is not accepted (which is really weird).
Filtering CustomObjects by boolean type must be done using 0/1 values.Example:This request works as expected and returns all custom objects with "Test" set to true. { "fields": ["CreatedAt","MarketoGUID","UpdatedAt","Test"], "filterType": "Test", "input": [ { "Test": 1 } ]} Even usi...
Filtering CustomObjects with multiple values using the "input" parameter results in duplicate records.Example:Executing this request, where the value "myTestLC" is provided twice results in 3 custom object results, 2 of which are duplicates. { "fields": ["CreatedAt","MarketoGUID","UpdatedAt","Chec...
We noticed that there are cases when invalid values are passed to filters but those are not validated. Example:- In case of this call: https://190-yef-239.mktorest.com/rest/v1/opportunities/roles.json?filterValues=test12&filterType=leadId&fields=createdAt an error is thrown by the API stating: "Inva...