Skip to content

loginCredentials

#!/bin/bash

#
# This file contains all the login information for the masking engine.
#

# Login credentials for the Masking Engine.
USERNAME="myUsername"
PASSWORD="myPassword"

# Login into a masking engine
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '\{ \ "username": "myUsername", \ "password": "myPassword" \ }' 'http://<myMaskingEngine>/masking/api/login'