curl --request POST \
--url https://api-staging.boost.xyz/auth/logout \
--header 'Authorization: Bearer <token>'
true
invalidate the refresh token of the user
curl --request POST \
--url https://api-staging.boost.xyz/auth/logout \
--header 'Authorization: Bearer <token>'
true
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success
The response is of type boolean
.