Syntax to POST a MEDIA from Zoho CRM to Wordpress Media Libray (Zoho Deluge)

Syntax to POST a MEDIA from Zoho CRM to Wordpress Media Libray (Zoho Deluge)

Hi,

I try to post a picture from a product from Zoho CRM to Worpdress Media Library.

This is what i'm doing but i have an error : Execution exception : 'Error due to - 'Internal Exception'' 

  1. picture= ifnull(prodDetails.get("picture"),"");

  2. map = Map();
  3. map.put("title",title);
  4. map.put("alt_text",title);

  5. response = invokeUrl [
  6.       url : "https://mywordpress.com/wp-json/wp/v2/media"
  7.       type : POST
  8.       files : picture
  9.       parameters : map
  10.       connection : "my_connection"
  11. ];

I know that my connection is ok because i'm able to POST some wordpress post with it.

Any idea  ?
Thanks ?