function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Mark.ax54Mark.ax54 

UserId truncated to 15 characters in SOAP login response

We've found a problem in the userID  returned from the SOAP (2.0) login call. The returned userID is truncated to 15 characters, whereas the same userID returned from a user query is 18 characters. This is causing problems with our ability to correlate these Ids.

I've prefer not to bake work around logic if there is a better solution (like an API fix).

Thanks,

-- Mark

DevAngelDevAngel

Hi Mike,

Try using useCaseSafeIds in the login call.  You can do this by adding the parameter to the login call in the wsdl file, or to any generated proxy that you are using.

Mark.ax54Mark.ax54
Thanks! That does it.