I am facing a problem inside my ASP.NET MVC 5 application.
I am passing the following JSON to a third party API, which include a password value :-
"{\"operation\":{\"Details\":{\"RESOURCENAME\":\"123\",\"ACCOUNTNAME\":\"test45\",\"PASSWORD\":\"123%456t\",\"createAccount\":{\"operation\":{\"Details\":{\"ACCOUNTLIST\":[]}}}}"
Now the problem is that inside the 3rd party system the API will save the password 123%456t
as 123E6t
.
Can anyone advice on this please? Is this a problem inside the 3rd party API or a problem that I need to handle from my side?