Logout
POST
/v1/auth/logout
const url = 'http://localhost:8080/v1/auth/logout';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:8080/v1/auth/logoutResponses
Section titled “ Responses ”Successful Response
Media type application/json
Response Logout V1 Auth Logout Post
object
key
additional properties
boolean
Example generated
{ "additionalProperty": true}