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
The Python client for FusionAuth does not align with the documented API endpoint for updating a user registration. The documentation specifies the endpoint as:
The Python client for FusionAuth does not align with the documented API endpoint for updating a user registration. The documentation specifies the endpoint as:
PATCH /api/user/registration/{userId}/{applicationId}
However, the Python client implementation only includes the userId in the URL and omits applicationId.
The client generates the following URL:
PATCH /api/user/registration/{userId}
The client should generate the URL as documented:
PATCH /api/user/registration/{userId}/{applicationId}
The text was updated successfully, but these errors were encountered: