Logout a user
POST/jwt/logout
This endpoint will revoke and invalidate the specified user's session.
Following a request to this endpoint, user will shortly need to obtain a new set of session tokens (access and refresh) from your server via the Authenticate endpoint.
Note that this endpoint does not require authentication, so omit any authentication headers and only include your refresh_token
in the request body.
Requestโ
- application/json
Body
required
refresh_token stringrequired
Responsesโ
- 204
The resource was deleted successfully.
Loading...