Forum Discussion
JeffPeterson1
3 years agoQrew Captain
You're missing some double quotes in your JSON. Try this:
{
"to": "table-name",
"data": [{
"42": {
"value": "[Merged Project - Source Record ID #]"
},
"16": {
"value": "[Additional Information]"
},
"40": {
"value": "[Client Contact Record ID #]"
},
"44": {
"value": "[Form Reference #]"
},
"11": {
"value": "[Date Created]"
},
"35": {
"value": "[Commercial Job Price]"
},
"9": {
"value": "[Job #]"
},
"122": {
"value": "[Ground Mount]"
}
}]
}
------------------------------
Jeff Peterson
------------------------------
- Automation3 years agoQrew MemberI just tried adding the double quotes to every field and I got the same results.
------------------------------
Automation
------------------------------- JeffPeterson13 years agoQrew CaptainTry it like this:
{
"to": "table-name",
"data": [{
"42": "[Merged Project - Source Record ID #]",
"16": "[Additional Information]",
"40": "[Client Contact Record ID #]",
"44": "[Form Reference #]",
"11": "[Date Created]",
"35": "[Commercial Job Price]",
"9": "[Job #]",
"122": "[Ground Mount]"
}]
}
------------------------------
Jeff Peterson
------------------------------