Logout
Logout
Revokes the refresh-token cookie, ending the seller session.
POST
Logout
Response
204
logout successful
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
const options = {method: 'POST'};
fetch('http://{defaultHost}/api/v3/seller/auth/logout', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url http://{defaultHost}/api/v3/seller/auth/logoutRevokes the refresh-token cookie, ending the seller session.
const options = {method: 'POST'};
fetch('http://{defaultHost}/api/v3/seller/auth/logout', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url http://{defaultHost}/api/v3/seller/auth/logoutlogout successful
Was this page helpful?
