ExternalAuthenticationCreateLoginTokenRequest
Bases: OCIRequest
This command allows a BroadWorks or Third-Party Client Application to create a Single Sign-On token for a user. The response is either ExternalAuthenticationCreateLoginTokenResponse or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ExternalAuthenticationCreateLoginTokenRequest.
Attributes:
login_token (str):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ExternalAuthenticationCreateLoginTokenRequest
client = Client()
command = ExternalAuthenticationCreateLoginTokenRequest(
user_id=...,
)
response = client.command(command)
print(response)