Passing a parameter inside a string

Hello,

This is my scenario.
Sequence 1: Web recording which is downloading pdf file to sared location.
Sequence 2- Rest service is picking up the file posting to document repository.

Question: I want to save pdf file with a unique name( person name_account no_ddmmyyy).
Pass the name to my rest service.
My rest service is a HTTP request- where the endpoint is appended with the entire query string which includes file name, account no etc)

1 Like

@deshpande.alok

Append parameters with string like

“Stringname”+ parameters name

1 Like

Hi Sandeep,

This is my service : “https://test.com/document/service/test/upload?test.pdf

paramter name- p_test1… I need to pass p_test1 instead of test.pdf

1 Like

@deshpande.alok
String should be like
https://test.com/document/service/test/upload?”+p_test

Where p_test is variable or argument of type that you define in your service

Thanks

3 Likes

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