Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Receive a token

Note
titleAttention!

A direct gRPC request can be anonymous. If an HTTP request is made to a web server, then it is necessary to use the Basic authorization type, since the anonymous requests to the web server are prohibited.

...

expires_at − token expiration date and time in the UTC time zone.

Renew a token

Request body:

Code Block
{
	"method": "axxonsoft.bl.auth.AuthenticationService.RenewSession",
	"data":
	{		
	}
}

...

Note
titleAttention!

The token should be active at the time of the request.

Close a token

Request body:

Code Block
{
	"method": "axxonsoft.bl.auth.AuthenticationService.CloseSession",
	"data":
	{
	}
}

...