Repeat the API request from Postman

I have a query in Postman, it uses the scripts tab with pre-request and post-responce.
How can I do this in UiPath?

Use Assign activities to prepare variables.

if you have a function to create an auth token
token = GenerateToken()

currentTime = Now.ToString(“yyyy-MM-ddTHH:mm:ss”)

Cheers

depending on the script details:

pre-request: can be done in advance and maniplate the request details / options
post-request: can be done along with the returned response

Feel free to share with us more details on

  • the pre-script
  • the post-script
  • overall goal of what is tried in general

UPD-1: Typo Fixings

1 Like

@Arettu63

Depending on what pre and post steps needs to be performed we can see for ways..it might not be a single activity that does all but can combine few

Cheers