Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

General Information

...


NameSourceMandatoryTypeSpecial FormatDescription
uIdQueryYESStringN/A
usernameBodyYESStringalphanumeric with _ , - characters only
firstNameBodyYESStringN/A
lastNameBodyYESStringN/A
emailBodyYESStringN/A
statusBodyYESenum
'active', 'inactive'
restricted to either 'active' OR 'inactive'
groupsBodyNOArrayN/Aarray of group code values
profileBodyNOObjectN/A
passwordbodyNOString

confirmationbodyNOStringsame as password
pin
bodyNO



code
YESString


allowed
YESBoolean

configBodyNOObjectN/A


NameSourceMandatoryTypeSpecial FormatDescription
keysBodyNOObjectN/A
packagesBodyNOObjectN/A
allowedTenantsBodyNOArray
array of allowedTenant objects


NameSourceMandatoryTypeSpecial FormatDescription
tenantBodyNOObject

groupsBodyNOArray


Example of config:

Code Block
languageactionscript3
titleconfig
 config: {
        packages: {},
        keys: {},
        allowedTenants: [
                {"tenant": {
                        id: "THYME_tID",
                        code: "THYME_CODE",
                        pin: {"code": "1235", "allowed": true}
                        },
                groups: ["waiter"]
                },
                {tenant: {
                        id: "ELVIRA_tID",
                        code: "ELVIRA_CODE"
                        },
                groups: ["manager]
                }
        ]
    },


...