I'm trying to add Accounts via the API.
These are recognized and imported correctly:
I can successfully create an account, but is it possible that the following payload keys/values aren't recognized?
Is there a solution to import accounts with their creation dates? How to define the modifiedById?
These are recognized and imported correctly:
PHP Code:
'name' => $data[7],
'website' => $data[10],
'type' => $data[32],
'industry' => $data[19],
'sicCode' => $data[11],
..... and a couple more
I can successfully create an account, but is it possible that the following payload keys/values aren't recognized?
PHP Code:
'createdAt' => $data[1],
'modifiedAt' => $data[2],
'createdById' => '1',
'modifiedById' => '1',
'assignedUserId' => '1'
Comment