Hi,
I’m working with Test-a-rest
I’m getting an issue when trying to run status change actions. For example I have this simplified script:
```cs
Eval "S" Into myRegionCode
Get SalesRegionsHandling.svc/SalesRegions(RegionCode='{$myRegionCode}') Into myRegion
Print myRegion
Create SalesRegionsHandling.svc/SalesRegions(RegionCode='{$myRegionCode}')/IfsApp.SalesRegionsHandling.SalesRegion_SetHidden Using myRegion
{
}
```
It should set the Region from Active to Hidden.
But I get this error, URI is malformed. Any ideas what’s going wrong?