You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to add a user that already exists the API currently returns the status "bad request". But actually the request is correct, only the response should contain the information, that the user already existed AND return the ID of that user.
Use case: I am using Zapier to add new users. There are several steps in the process:
request "add user"
request "add that user to space xy"
But Zapier receives "error 400" on the first requests and stops, because it thinks the request was malformed.
The text was updated successfully, but these errors were encountered:
I would suggest if there is already a user with the email address or username, we can return an HTTP Error 409 Conflict. Possibly with an output of "Conflicted with user details".
Otherwise I guess you have to do getUserByEmail/Id/Username first and check if the user already exists.
Would this be possible with your Zapier environment?
When trying to add a user that already exists the API currently returns the status "bad request". But actually the request is correct, only the response should contain the information, that the user already existed AND return the ID of that user.
Use case: I am using Zapier to add new users. There are several steps in the process:
But Zapier receives "error 400" on the first requests and stops, because it thinks the request was malformed.
The text was updated successfully, but these errors were encountered: