Developer forum

Forum » Dynamicweb 10 » Add asset by API

Add asset by API

Martin Moen
Reply

Is it possible to add an asset through the management API?

Thinking of using /admin/api/ProductAssetAdd as it looks like a good match for the use case.
But how can I use this combined with lets say a Base64 string representing the asset (image or pdf).

Have anyone tried this before? Or can anyone let me know if it is possible to do asset uploads through API?

Do I have to upload the file first, and then add the asset to the product using the relative file path?
Guess there is no API option to upload files using Base64...?


Replies

 
Martin Moen
Reply

Never mind, I found out.

To everyone else looking for an answer, you can make an HTTP POST to /Admin/Api/Upload

Remember to use the same header auth as you use with management API, so "Authorization: Bearer <your token>".

This endpoint accepts two form-data body parameters.

  • path (ex. /Files/Images)
  • files (binary object)

And it responds with something like this, if the image is successfully uploaded:

 

You must be logged in to post in the forum