Property transfer - concate request result with constant/property value
Hello Guys,
i made a rest-request which returns me an url (orders_url) (see https://api.predic8.de/shop/docs#!/customers/getCustomersId )
https://api.predic8.de:443/shop/customers/1
result:
{ "firstname": "Joe", "lastname": "Newman", "orders_url": "/shop/customers/1/orders/" }
Now i want to use orders_url as endpoint in the next request to check the result. To do this i have to concate the base url (https://api.predic8.de:443) with the orders_url to get the fully url (https://api.predic8.de:443/shop/customers/1/orders/)
is it possible to do that in property transfer or at least in any other way?
i thought i could just concate the result with the base url
$.concat("https://api.predic8.de:443",$.orders_url)
or with a property expansion
$.concat(${#TestCase#baseUrl},$.orders_url)
but nothing worked. How ever it seems to be that properys that retrieved with the get-data-funtion will not work in property-transfer-dialog, even if the context menue allows me to pick that data using property expansion.
this is a picture what if have done
how could it be done ?