AJO Custom Action Variable Value Delimeter | Community
Skip to main content
Level 2
November 20, 2025
Question

AJO Custom Action Variable Value Delimeter

  • November 20, 2025
  • 1 reply
  • 49 views

 

Hi all,

 

I have a bit of an urgent ask so a quick response would be appreciated.

 

I’ve run into an issue while making requests through Custom Actions in AJO and wanted to check if anyone has a solution or workaround.

 

When passing a full URL into a Custom Action, AJO appears to modify the request URL by inserting its own variable values into the delimiter. For example, if we use an endpoint such as:

 

 

and we try to append a parameter using a semicolon, AJO automatically inserts a slash before the semicolon.

 

Similarly, when we attempt to pass query parameters, AJO rewrites the endpoint and adds encoded characters like % values, which changes the final request URL.

 

Is there a recommended way to prevent AJO from altering the structure of the URL, or a best practice for handling parameters in Custom Actions so the URL is preserved as intended?

 

Thanks

1 reply

SatheeskannaK
Community Advisor
Community Advisor
November 20, 2025

@trojanhorse12 You can't do anything; those are URL-encoded values that ensure that URLs remain valid and can be correctly interpreted by web browsers and servers.

Thanks, Sathees