Hello! I’m getting an error with sending a patch request. I’m getting the following errror:
{
“error”: {
“type”: “INVALID_RECORDS”,
“message”: “You must provide an array of up to 10 record objects, each with an “id” ID field and a “fields” object for cell values.”
}
}
I’m trying to send an array. I’ve checked my JSON formatting. Not sure what else might be the issue. Here’s the JSON I’m trying to send (with record IDs masked):
{
“records”:[
{
“id”:“recabc123”,
“fields”:{
“Reminder Days”:[
“recced456”,
“recefg789”
]
}
}
]
}
