In the REST API prior to CS 16.2.9 you could pass the Username and password as query string parameters.
Bad practice I know but the third party programmers used it and it would return a valid Ticket.
POST /otcs/cs.exe/api/v1/auth? username=tmp_svc_berocca&password=********************
Since us upgrading to CS 16.2.9 they are now getting an error
""error": "Query string parameters disallowed for the HTTP method 'POST'"
I know you now have to encapsulate the authorisation request in a form and send it as a “Content-Type of “application/x-www-form-urlencoded”.
However, the developers from are requesting OT documentation on this change before they will start their remediation work to correct bad practice programming.
Anyone know where I can find some ?