Skip to content

Me

The SCIM /Me endpoint is a convenient way for a user to access their own User resource without needing to know their unique identifier. It's essentially an alias for the /Users/{id} endpoint, where {id} is the identifier of the authenticated user making the request.

When a GET request is made to the /Me endpoint, the server responds with a JSON object representing the User resource of the authenticated user. This object includes information such as the user's name, email address, and other attributes.

Similarly, authenticated users can update their own information by sending a PUT or PATCH request to the /Me endpoint, or delete their own user resource by sending a DELETE request.

Currently this is not implemented in this playground environment.