/
Get an Authentication Token
Get an Authentication Token
Members Account Licensing API base URL: https://my.interfaceware.com
Get an Authentication Token POST /api
This API method returns a JSON object containing a session token which will be used with the subsequent license API calls.
Parameters:
Parameter | Description | Value (as a string) |
---|---|---|
username | Your Members Account username. |
|
password | Your Members Account password. |
|
method | The API method name. |
|
Sample Request:
Curl request calling the API and parsing the Token from the response:
IguanaToken=`curl -k -X POST "https://my.interfaceware.com/api?username=<InterfacewareUser>&password=<InterfacewarePassword>&method=session.login" | jq -r '.data.Token'`
Response:
{
"data": {
"Token": "277DBB66C802BE3287207FFE120595EC",
"Info": {
"Permissions": {
"LicenseTransfer": true,
"TemporaryLicense": true,
"LicenseRead": true,
"FinancialRead": false,
"LicenseWrite": true
},
"CompanyName": "Company ABC"
}
},
"status": "ok"
}
, multiple selections available,
Related content
Get List of Entitlements (License Types)
Get List of Entitlements (License Types)
More like this
Get List of Activated Licenses
Get List of Activated Licenses
More like this
Get an Activated License Code
Get an Activated License Code
More like this
Transfer a License Code
Transfer a License Code
More like this
How to Build Iguana License Automation
How to Build Iguana License Automation
More like this
Automating License Activation
Automating License Activation
More like this