609 Error Code - REST API
Hello,
I am trying to make a simple Lead update post via Postman to the Marketo API that updates firstName based a lookupField of serialPerson (custom field). I keep getting a 609 - "Unexpected character ('-' (code 45)) in numeric value: expected digit (0-9) to follow minus sign, for valid numeric value" Error Code.
My Content-Type is set to application/json and my request is:
{
"action": "createOrUpdate",
"lookupField": "serialPerson",
"input": [{
"serialPerson": 6523,
"firstName": "test"
}]
}
Does anyone know what this message is referring to?