Http request help

I have to call api request to upload the files by converting into bytes. Have some parameters also . Can you please guide me on this as I am very new to UiPath. Step by step

Hi @Pooja_jain1

Check this:

Thankyou
But how to convert files into bytes so I can upload through UiPath

@Pooja_jain1

Byte[] bytes = File.ReadAllBytes("path")
String file = Convert.ToBase64String(bytes)

this helps in reading file in bytes and then convert bytes to base64string

it would be good if you can provide what is needed in api to give exact answer…else please use these as starters and build on top

cheers