Special note in case folks don't realize it. When adding your attribute fields, if you use "name", you must use the Display Name for the attribute. If you want to use the API name, use "apiName". Drove me crazy. Example below. { "input": [ { "leadId": 2000950, "activityDate": "2018-04-01T23:18:34Z", "activityTypeId": 100008, "primaryAttributeValue": "PEPTIDE XB-C18", "attributes": [ { "apiName": "productBrand", "value": "Aeris" }, { "apiName": "orderNumber", "value": "APR012018" }, { "apiName": "productSKU", "value": "PEPXBC18" }, { "apiName": "orderDate", "value": "2018-04-01" }, { "apiName": "orderQuantity", "value": 1 }, { "apiName": "productPromo", "value": "None" } ] } ] }
... View more