Http PUT request is not taking csv input file

I’m passing csv input file through body of the http request getting response as successful but the data passed through the csv file is not getting updated in website. If i try the same via post man its working
In Postman
https://abcd.com/api/v21.2/vobjects/:{object_name}
Parms ->path variable
{object_name} : user__sys
Header
Authorization : Session ID
Content-Type : text/csv
Accept : application/json
Body → binary
csv path

In UiPath
https://abcd.com/api/v21.2/vobjects/user__sys
(here {object_name} is replaced directly with user__sys )

Header
Authorization : Session ID
Content-Type : text/csv
Accept : application/json
Body → csv file path
Body format : binary

Hi @Manuthejusui

You try to give the File file path

“C:\Users\Dell\Documents\UiPath\Test\Generate Output.csv”

Regards
Gokul

giving in same format its not working