How to convert UTC date format into normal date format in Get method(using entity query) Webapi

  

How to convert above date and time function into normal date and time(2022-04-05 3:15:40 ) format  and this date need to passed from web api to external system

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to Tabassum

    Can you show whats the error you are getting ?

    Also, the functiton you seems to have used is toisodatestring insteaed of fromisodatestring

    Assuming you are receiving the date in ISO format in your http request query parameter from,

    and you want to compare it with requestCreatedOn in your appian DB, you should just do 

    fromisodatestring(http!request.queryParameters.from)

Children