Session Logout

Log out a user’s session.

Logout.

post

Logout a users session.

Header parameters
sessionTokenstringRequired

the session token to logout.

Responses
200
OK.
application/json
post
POST /sessionauth/v1/logout HTTP/1.1
Host: yourpodurl-api.symphony.com
sessionToken: text
Accept: */*
{
  "message": "text"
}

📘 Note

You must provide a certificate where the Common Name of the certificate matches the username of an active Service User account on your pod. To call the Logout endpoint for a user, you must have a valid sessionToken for the user.

Example call sequence:

  1. Call Session Authenticate to get a sessionToken.

  2. Call Logout with the sessionToken.

To call the Logout endpoint for an app, you must have a valid session token for an app that's been installed for the user whom you intend to log out.

Example call sequences:

  1. Call App Authenticate to get a sessionToken.

  2. Call Logout with the sessionToken.

  3. Call App Authenticate to get a sessionToken.

  4. Call User Authenticate with the sessionToken.

  5. Call Logout with the sessionToken.

Last updated

Was this helpful?