Cette notice est applicable uniquement pour les produits AGICITY ™ DUO and AGICITY ™ PRO. Veuillez vous référer aux manuels produit et configuration pour plus d’informations spécifiques.
Pour accéder au portail de configuration de la borne, suivre au préalable les instructions de la fiche "Prérequis - Connexion à la borne".
Configuration – Key Value – Change Config
Votre borne doit être au préalable configurée en accès par Badge avec White List comme ci-dessous :
Configuration – Charger les badges
Exporter une liste de badges:
Importer une liste de badges:
Modèle .json
} {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://enovates.com/lccl/AuthorizationList.json",
"title": "LCCL Admin API Authorization List",
"description": "Token Authorization List for uploading on the LCCL Admin page",
"type": "object",
"properties": {
"authorizationListVersion": {
"description": "The version of this authorization list",
"type": "integer",
"minimum": 1
},
"tokens": {
"description": "Tokens in the Authorization List",
"type": "array",
"items": {
"type": "object",
"properties": {
"tokenCode": {
"type": "string"
},
"expirationDate": {
"type": "integer",
"description": "Token Expiration as Java timestamp (milliseconds since 00:00:00 UTC on January 1 1970)"
},
"tokenStatusCode": {
"type": "string",
"enum": ["ACCEPTED", "INVALID", "EXPIRED", "BLOCKED", "CONCURRENTTX", "UNKNOWN"],
"description": "Token Status"
},
"parentCode": {
"type": "string",
"description": "The parent/Group token"
},
},
"required": [ "tokenCode", "tokenStatusCode" ]
},
"minItems": 0
}
},
"required": [ "authorizationListVersion", "tokens" ]
{
"authorizationListVersion": 1,
"tokens": [
{
"tokenCode": "CD3456EF",
"expirationDate": 1615300829000,
"tokenStatusCode": "ACCEPTED",
"parentCode": "parent"
},
{
"tokenCode": "CD1234EF",
"tokenStatusCode": "ACCEPTED"
}
]
}