InvalidateToken

 

TokenService / InvalidateToken

 

Description: Delete the token

URL: http://{your-server-url}/api/v1/token/request

Method: DELETE

Token Required: False


Request Headers:
content-type: application/json or content-type: application/xml
Request:

Type: Nexus.AppSpace.Service.Contract.Messages.Token.TokenRequest

Parameter Type Nullable
Request.Authentication Nexus.AppSpace.Service.Contract.Messages.Authentication False

Response:

Type: Nexus.AppSpace.Service.Contract.Messages.Token.TokenResponse

The following is an example request Xml body:
<TokenRequest xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages.Token" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Authentication xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">
    <AccountId>String</AccountId>
    <SecurityToken>String</SecurityToken>
  </Authentication>
</TokenRequest>

The following is an example request Json body:
{
	"Authentication":{
		"AccountId":"String",
		"SecurityToken":"String"
	}
}