Upload Image into Wordpress Media via API

Upload Image into Wordpress Media via API

Hi, 
I tried to upload image from Zoho Creator into Wordpress Media folder via api. 
I have issues wih my code and I don't knw how to fix it. 
  1.                 post_data = Map();
  2. post_data.put("media_urls","IMAGE_URL");
  3. header_data.put("Content-Type","image/jpeg");
  4. header_data.put("Content-Disposition","attachment; filename=" + imageDownloadResponse);
  5. header_data.put("Authorization","Basic XXXXXXXXXXXXX");
  6. uploadResponse = invokeurl
  7. [
  8. url :"https://site.com/wp-json/wp/v2/posts"
  9. type :POST
  10. parameters:post_data
  11. headers:header_data
  12. ];
  13. info uploadResponse;
First response says that 

  1. {
       code : "rest_cannot_create",
       message : "Sorry, you are not allowed to create posts as this user.",
       data : {
          status : 401
       }
    }