How do we achieve document upload dynamically where the dynamic generated form is there from camunda

How do we achieve document upload dynamically where the generated form is there from camunda with different type of file formats?

Hi @Vinod,

I’m not entirely sure I understand your question. Perhaps you could clarify not just what you’re trying to do, but what problem you’re trying to solve?

Are you trying to upload files as part of a form?

Best Regards,
dg

@davidgs i need to upload the documents (different types of document format) with help of REST api how can we achieve that? with camunda

Hi @Vinod ,

If you start up a local instance of the Camunda Platform server with the Swagger UI enabled you can easily go through all the available api calls.

There is a specific one that you will be interested in:
http://localhost:8080/swaggerui/#/Task%20Attachment/addAttachment
It’s an HTTP POST API that lets you upload files. It’s part of the larger Task Attachment API.

Hope that helps,
dg