Adding dynamic parameters to URL throws error

I am using REST Connector in Camunda 8.4.
Where I Want to add dynamic parameters to URL for that I have used string concat.

example :-
https://abc.com/vsecurity/v1/delete-application/” + applicationId + “/” + customerId

It throws error after running it.

jakarta.validation.ValidationException: Found constraints violated while validating input:

  • Property: url: Validation failed.

hi @saineshwar
you can send variables when process begin, you can use FEEL expression in URL.

Your code looks correct. Maybe you don’t have any values in your variables? See How to include id in REST API URL path (but not in query string or body)? - Camunda 8 Topics / Discussion & Questions - Camunda Forum

1 Like