Version 2021

Close session between third-party server and third-party app

Closes the session between your third-party mobile app and third-party server. Your third-party mobile app makes this call against your third-party mobile server.

A close session call is required, but the specific /logout API call below is provided as an example. You can choose to implement the close session call differently depending on your mobile server configuration.

Request format


HTTP method

GET

Resource URL

https://mobileServer/logout

Parameters

Parameter Required? Description
mobileServer Required The location of your third-party mobile server.

Response format


Response body

{
"status": "..."
}

Example

Example request

curl -i "https://acmecorp.com/logout" -H "Cookie: JSESSIONID=TpYsSXRkUZRs-Z_3fl--amZ7ycx0kLm:853449:_3436"

Example response

{
"status": "logout"
}