Single sign-on request reference

This topic describes the Single Sign On related HTTP requests in Verba.

SSO registration request

Use this request to register a security token for a new user session/login. After this call an SSO Login Request will allow the user into the Verba web interface without authentication.

URL

http://<Verba-Media-Repository-address>/verba/extsso.do

URL parameters

URL parameter

Description

Type

Examples/Format

eid

Verba Environment ID, identifies the tenant in a multi-tenant Verba system

CHAR 4

0000, TCNC, TCC1

uname

Verba Login ID, user s login for the Verba system

CHAR 32

user1, 2013424695

token

Security Token, a globally unique identifier (GUID) that will identify a particular user s web session (generated by the customer s security system)

CHAR 36

3F2504E0-4F89-11D3-9A0C-0305E82C3301 (suggested)

expire

Expiration date/time of token, defines when the token is no longer valid (in UTC)

Date/Time

YYYY-MM-DD_HH:MM:SS.Mss
1900-12-31_00:00:00.000 

usrip

User s IP Address, IP address of the computer that the user is using to log into the system(s)

CHAR 15

xxx.xxx.xxx.xxx
192.168.221.113

URL example

http://10.1.1.123/verba/extsso.do?eid=0001&uname=2013424695&token=3F2504E0-4F89-11D3-9A0C-0305E82C3301&expire=1900-12-31_00:00:00.000&usrip=192.168.221.113

SSO login request

Use this request to submit an already registered security token to allow login without manual authentication. This call should follow a successful SSO Registration Request.

URL

http://<Verba-Media-Repository-address>/verba/extssologin.do

URL parameters

URL parameter

Description

Type

Examples/Format

token

Security Token, a globally unique identifier (GUID) that identifies a particular user s web session (generated by the customer s security system, submitted to Verba MR before this login call)

CHAR 36

3F2504E0-4F89-11D3-9A0C-0305E82C3301 (suggested)

    

URL example

http://10.1.1.123/verba/extssologin.do?token=3F2504E0-4F89-11D3-9A0C-0305E82C3301