I have a large file. How can I upload the file in chunks using the Kubo RPC API?

I want to upload a file in chunks using multiple POST requests. How can I achieve this?

The add api is streaming, it’s one request but you don’t need to hold everything in memory.

Thank you for your reply. However, I achieved my goal by making multiple requests to append chunks through “/api/v0/files/write”.