SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Sessions

Log out

POST/api/v1/auth/logout

Revokes the current session and clears the auth cookies on web.

Requires Authorization
Session
Request
curl --request POST \
  --url https://api.swiftgoma.com/api/v1/auth/logout \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "loggedOut": true
  }
}