Logout
The "Logout" endpoint enables users to securely log out of their session. Below are the details on how to integrate the logout functionality into your application.
Overview
Request Body
refreshToken
: The refresh token associated with the user's current session.
Responses
Success (Code 204)
No Content: The server successfully processed the request, and there is no additional content to send.
Usage
Send a POST request to the provided endpoint with the user's refresh token.
Handle the response accordingly based on success (no content) or not found.
Note: Ensure the provided {refreshToken}
is valid and associated with the user's current session.
Last updated