get_sso_url
Generate a Single Sign-On URL for customer portal access using product details and customer account code, enabling quick authentication for license management.
Instructions
Get Single Sign-On URL for customer portal access
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customer_account_code | Yes | ||
| product | Yes | ||
| response_type | No | token |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"customer_account_code": {
"minLength": 1,
"type": "string"
},
"product": {
"minLength": 1,
"type": "string"
},
"response_type": {
"default": "token",
"type": "string"
}
},
"required": [
"product",
"customer_account_code"
],
"type": "object"
}