Uploading file to custom field of type file_upload using zoho crm api v2 (Account) - maximum_length error

Uploading file to custom field of type file_upload using zoho crm api v2 (Account) - maximum_length error

Hi,

So i tried the steps from:
https://help.zoho.com/portal/en/community/topic/want-to-upload-images-to-custom-image-fields-using-zoho-crm-api-v2?src=zcomforumjul19

Step 1.
Currently I am uploading a file with (POST) https://www.zohoapis.com/crm/v2/files to zoho and get the following Response.

  1. {
  2.   "data": [
  3.     {
  4.       "code": "SUCCESS",
  5.       "details": {
  6.         "name": "logo.png",
  7.         "id": "6bf2752ab70ab22b3341856dcc04107ab137224f724904c1234567890123456789"
  8.       },
  9.       "message": "logo.png uploaded Succeessfully",
  10.       "status": "success"
  11.     }
  12.   ]
  13. }

Step 2
After that i am trying to add the file to the custom field "Company_Logo" (type=file_upload) with (PUT) https://www.zohoapis.com/crm/v2/Accounts/1234567890123456 and the following JSON data

  1. {
  2.   "data": [
  3.     {
  4.       "Company_Logo": [
  5.         "6bf2752ab70ab22b3341856dcc04107ab137224f724904c1234567890123456789"
  6.       ]
  7.     }
  8.   ]
  9. }
Which results in the following Error

  1. {
  2.   "data": [
  3.     {
  4.       "code": "INVALID_DATA",
  5.       "details": {
  6.         "maximum_length": 1,
  7.         "api_name": "Company_Logo"
  8.       },
  9.       "message": "invalid data",
  10.       "status": "error"
  11.     }
  12.   ]
  13. }
When I change the Field Properties to allow multiple files (Upload multiple files - Maximum 5 files), the same error occures with "maximum_length": 5.

I also changed the JSON Data to 
  1. {
  2.   "data": [
  3.     {
  4.       "Company_Logo": "1"
  5.     }
  6.   ]
  7. }
which results in status = 'success' but nothing changed to the data inside the custom field.