Log in using session ID
1 min
use a session id to log into the tenant base url https //{tenant url}/api/rest/authentication/login use this information to log in to a tenant using the session id authorization a session id contans a tenant url, while a jwt does not url https //{tenant url}/api/rest/authentication/login method post request payload { "tenant" "{tenant url}", "username" "{name of the user}", "password" "{password set for the user}", "role" "{user role to log in to the application}" } status code 200 when providing the "role" parameter, you need to provide the internal name of the role and not the display name for example, admin is the internal name of the role if the log in api is executed successfully, the application generates a session id follow the steps below to log in to a tenant create a new request in the postman application enter the following information in the header tab select the authorization check box enter the generated session id in the value column enter the endpoint request payload details and select send
