Hi,
I'm trying to bulk upload data, including Date fields from csv file using php sdk. (v2)
All the fields successfully update except all Date type fields.
The field mapping code (taken from zoho examples) is
$fieldMappings = ZCRMBulkWriteFieldMapping::getInstance('first_date', '1');
$resourceIns->setFieldMapping($fieldMappings);
date format in csv is :
2024-05-01T14:12:37+02:00
Field api name is correct, date format is the same as in $record->getData()
Does anyone have an idea, what could be the problem?
Thanks