RealCADENCE™ Enterprise Action Management system has some complexities. Interacting with SKI based APIs can make the job easy and automated.
POST users/auth
Returns a session token that is used for session-based APIs.
| Example |
curl --request POST \ --url https://hostname/users/auth \ --header 'content-type: application/x-www-form-urlencoded' \ --data username=joe.user \ --data password=[your passphrase hash] \ --data method=2 |
| username | “joe.user” |
| password | Depending on method, a character string representing user’s passphrase |
| method | 2 = hash of user’s passphrase (recommended); 1 = clear text passphrase |
| format (optional) | json | xml |