I'm seeing a "cannot deserialize value of type ‘java.util.uuid’ from string" error when posting to /api/login
-
I'm using a load testing tool and seeing the message "cannot deserialize value of type ‘java.util.uuid’ from string".
Here's what I'm sending to FusionAuth:
{ "applicationId": 15e45e7d-3e34-43df-9366-91c66a8cc9ae, "loginId": "myuserid", "password": "mypassword" }
-
It looks like the uuid isn't being sent as a string. Per https://fusionauth.io/docs/v1/tech/reference/data-types#uuids it should be quoted.
So you want to send:
{ "applicationId": "15e45e7d-3e34-43df-9366-91c66a8cc9ae", "loginId": "myuserid", "password": "mypassword" }