Creating the Login Request - Platform - Foundation 24.1 - Foundation 24.1 - Ready - Hyland RPA - external - Hyland-RPA/Platform/Foundation-24.1/Hyland-RPA-Platform/General-Information/Direct-API-requests-with-Postman/Creating-the-Login-Request - 2025-04-03

Hyland RPA Platform

Platform
Hyland RPA
Product
Platform
Release
Foundation 24.1
License
To create the login request:
  1. In the Collections tree, right-click New Collection and then select Add Request.
  2. In the name field, enter Login.
  3. From the drop-down list, select POST.
  4. In the Enter request URL field, enter the following, replacing {domain_name} with your environment's domain name:
    https://{domain_name}/identity/api/Authorization/login
  5. On the Body tab, select raw.
  6. From the drop-down list, select JSON.
  7. As the Body, enter the following, replacing {domain_name} with your environment's domain name and {api_name} with the API you are targeting:
    {
    "identifier": "INSERT YOUR USERNAME HERE",  
    "password": "INSERT YOUR PASSWORD HERE",
    "remember": true,
    "redirectUrl": "https://{domain_name}/{api_name}/swagger/oauth2-redirect.html"  
    }

    Possible API names

    • heart
    • identity
    • repository
    • policy
    • analytics
  8. To send the request, click Send.
  9. Verify that the status code returns 200.
  10. Click Save.