CURL $ Request using UiPath Studio

Hello Friends.
I need to know how to make a curl request like the one below using UIPath.
I will extract the data from SAP which is only: “grossmargin”: 0.0641 and need to make a curl request.

Can you please assists.
I appreciate your time and effort

curl https://api.geckoboard.com/datasets/subcharter_gross \
  -X PUT \
  -u '0edf547b8c84ecdfb2de04977ca619:ZH!rjn8fne6cwf@mtz' \
  -H 'Content-Type: application/json' \
  -d '{
  "data":[
    {
      "grossmargin": 0.0641
    }
  ]
}'

have a look on the HTTP Request activity along with header / parameters / Body configurations
Or
using Curl via Powershell or Powershell Invoke-RestMethod Comandlet

1 Like

Thank you Peter.
Can I have an example using this particular case how the configuration would look like in one of these scenarios ?

Thank You

give a try on:

find starter help here:
ppr_HTTPRequestBox_HurmetNoka.xaml (5.5 KB)

1 Like

Thank you so Much Sir

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.