Salesforce POST /salesforce/_table/{table_name} Invalid ID Field

Running DF V 2.2.3

Attempting to Post a new Account record into Salesforce via the API_Docs that looks like this:
{“resource”: [{
“id”: 0,
“IsDeleted”: 0,
“MasterRecordId”: 0,
“Name”: “Pizza Chen”
}],
“ids”: [
0
],“filter”: “string”,
“params”: [
“string”]}
And I get the following error “message”: “INVALID_FIELD The Id field should not be specified in the sobject data.”, However, when I remove the Id field from the JSON Body I get this error “message”: “Required field ‘id’ can not be NULL.”!

This is driving our developers NUTS! Any help would be greatly appreciated!