Hi team,
As I am using the HTTP Request for PUT method.
While I am passing the payload in the BODY for dynamic values I am getting the response as 400
I am passing the payload as “{”“state”“:”“3"”,““comments””:““Completed””}"
The above payload query is working as expected but while I tried to pass some other comments, I am getting error.
I tried another way as “{”“state”“:”“3"”,““comments””:+StrValue+“” Completed"“}”
where strValue=the Id of the transaction for every transaction
So this second payload is not working .
Kindly help me on this
Thanks
Hi @srinusoft37
Seems like there are some syntax issues in the dynamic parsing of the data into the payload. Please try the following syntax & let us know if this works:
"{""state"":""3"",""comments"":""" + StrValue + " Completed""}"
Hope this helps,
Best Regards.
1 Like
can we also pass more dynamic values like strString and soon
For multiple dynamic values how can we edit the code we need to have the body in another like also at that time I am using the Environment.newline
so could you please help for that as well
“{”“state”“:”“3"”,““comments””:“”" + StrValue + " Completed" +Environment.Newline+“” strString"" “}”
please kindly help me on this, So I can change acording to my code.
Thanks
@srinusoft37
You can certainly pass multiple values, something like this:
"{""state"":""3"",""comments"":""" + StrValue + " Completed" + Environment.NewLine + strString + """}"
Best Regards.
1 Like
For multiple values this is not working as Expected. The actual string I need to update is as follows
Hello @,
Your application login account with the below user role has been successfully created in the application.
.
Please login to the application with the below URL using the appliaction Network ID and password.
https://application.com
Please consider bookmarking this link for easier retrieval in the future. Your request will now be marked as resolved.
Thank you,
ApplicationSupport Team
This should be come in comments section.
I tried with multiple ways but failed to fine the solution.
Kindly help me on this
system
(system)
Closed
June 11, 2023, 4:55pm
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.