Introduction
Pin code configuration in each configuration layer (Default, Registry, and Service (tenant))
Name | Type | Description | Example |
---|
charLength | integer | Length of Pin Code | 6 |
characters | string | Characters allowed to be used for Pin Code | 01234 |
Examples
Pin Configuration Example
Code Block |
---|
language | js |
---|
title | Pin configuration |
---|
|
{
"pinConfiguration": {
"charLength": 4,
"characters": "0123456789"
}
} |
URAC Object Example
Code Block |
---|
language | js |
---|
title | URAC in Tenant configuration |
---|
|
{
"urac": {
"pinConfiguration": {
"charLength": 4,
"characters": "0123456789"
},
}
} |
...