Can I use DQL query in Integration url?

I want to use one get API endpoint which has dql query in the endpoint. but its failing in Appian integration and getting result from postman.

1. When I execute Get API endpoint in postman am getting result. but if i do the same in appian Integration am getting error.

what might be the reason? Do integration doesnt support dql query?

  Discussion posts and replies are publicly visible

Parents Reply
  • calling expression rule in the value of query parameter not working, only the hardcoded values are giving me exact result. 

    Expression:

    rule!Test_urlWithParameters(
    text: "select object_name from d2_dictionary_value where dictionary_name = '"&ri!dictionary_name&"' and any locale_value = ' "&ri!locale_value& " ' "
    )

    used this in the rule as you said:

    mid(
    urlwithparameters(
    "/",
    {"x"},
    {ri!text}
    ),
    5,
    10000
    )

Children