curl --request POST \
--url http://co-mind-platform-host/v1/auth/logout \
--header 'Content-Type: application/json' \
--data '
{
"access_token": "<string>",
"refresh_token": "<string>"
}
'{
"message": "Logged out successfully",
"success": true
}Revoke/blacklist access and refresh tokens.
curl --request POST \
--url http://co-mind-platform-host/v1/auth/logout \
--header 'Content-Type: application/json' \
--data '
{
"access_token": "<string>",
"refresh_token": "<string>"
}
'{
"message": "Logged out successfully",
"success": true
}