Mapi - Publish/Subscribe MQTT API for EVVA Xesar System 1.2.1

Introduction

What is PubSub?

Publish/subscribe messaging, is a form of asynchronous machine-2-machine (M2M) communication that can be used in event driven domains.

The main elements in a pub/sub messaging model are:

  • topics: identify an actual communication channel
  • messages: the content that is transmitted on a topic
  • publishers: generate and publish messages to a topic
  • subscribers: subscribe to a topic to receive messages
  • broker: brings publishers and subscribers together by providing the mechanism for receiving messages from publishers and forwarding messages to subscribers for the respective topics.
  • clients: are applications that connect to brokers and can be publishers and/or subscribers.

Any message published to a topic is immediately received by all of the subscribers to the topic. A publisher doesn't need to know who is going to receive the messages that are sent and the subscribers don't know or need to know who sent the message.

The Pub/sub model allows a loose coupling between client applications in order to increase performance, reliability and scalability.

Intro PubSub

This Documentation was generated by asyncapi v.2.0. The corresponding yaml file can be found here


Xesar 3 PubSub Interface

Xesar 3 comes with a broker and the backend publishes and subscribes various topics. A summary of these topics is presented in the following tables:

Topic What Description XS3 Server is Session
xs3/1/ces/{EventName} System Events Emits system events that are generated by commands from the interfaces (M2M or Human UI) Publisher NOT required
xs3/1/ase Access Control System Events Emits access control system events that are generated by the EVVA access control components when they are collected by the system through the maintenance or the virtual network. Publisher NOT required
xs3/1/cmd/{CommandName} Command Requests Receives commands to enable uses cases on the M2M interface Subscriber Required
xs3/1/q Query Requests Receives queries for data collected in the system. Subscriber Required
xs3/1/{User ID}/q Query Results Emits answers to previously received queries. Publisher Required
xs3/1/{User ID}/err Emits errors for previously received queries or commands. Publisher Required

Xesar 3 Events

Xesar 3 will emit two different types of events:

  1. System Events: these events are caused by the administration of the system through the human and M2M interfaces. This is also called jorna.
  2. Access Protocol Events: these events are registered at EVVA components and collected by maintenance and virtual network.

PubSub Events


Connections

Xesar 3 is an access control system, thus security is relevant in all aspects of the system. All clients have to provide authentication and authorization for operations that request data or change the system state.

In order to establish a connection to the included broker, each client requires a certificate for unique identification and authentication. The package with the certificate can be obtained through the user interface.

PubSub Session PubSub Session End

The broker address is included in the downloaded package, the corresponding port will depend on your system setup, the default TLS port is 1883.

You will need to handle two key=value pairs on your own:

username={Your username}
password={Your user's password}

Session

Each client is bound to a specific user and the user can have authorizations through the groups with their respective permissions. Given that the broker does not know about the XS3 Server Client per design, authorization requires a session for the user.

Topic What Description XS3 Server is Session
xs3/1/cmd/Login Login requests Receives a login to establish a session Subscriber NOT required
xs3/1/{User ID}/LoggedIn Login response Emits session information upon successful login Publisher Required
xs3/1/cmd/Logout Logout requests Receives a logout command with a session token Publisher Required
xs3/1/ces/LoggedOut Logout responses Emits logout events happening in the system Publisher NOT Required

To establish a session a client connects to the broker and publishes a login message. If successful a session token is returned; if not, a system event is issued to notify about an authorized login attempt. The latter allows to observe the system and allows to take defensive security measures.

image

To end a session a client sends a logout command. If the logout is successful, a corresponding system event is issued.

image


Access Protocol Events

All access protocol events are issued to a topic with the p$refix xs3/1/ase. To allow easier handling, the events are additionally bundled into groups. Thus they can be subscribed separately or by groups. Subscriptions can be simplified by using single level (+) or multi-level (#) wildcard subscriptions. Please note, that the delivery of these event may happen with quite a delay (because events are picked up over time through maintenance tasks and identification media providing a virtual network).

The following table lists interesting events in the access control system:

Event Name Event Number (Hex) Event Number (Dec) Group
NORMAL_OPENING 0x0001 1 MediumEvents
EMERGENCY_OPENING 0x0002 2 MediumEvents
MANUAL_OPENING_STARTED 0x0003 3 MediumEvents
MANUAL_OPENING_FINISHED 0x0004 4 MediumEvents
MEDIA_RESTRICTED 0x0005 5 MediumEvents
PROLONGED_NORMAL_OPENING 0x0007 7 MediumEvents
PROLONGED_MASTER_KEY_OPENING 0x0008 8 MediumEvents
OPENING_MASTER_KEY_IGNORED_BLACKLIST 0x0009 9 MediumEvents
OPENING_MASTER_KEY_PROLONGED_IGNORED_BLACKLIST 0x000A 10 MediumEvents
KILL_MEDIUM 0x0401 1025 MediumEvents
TIMED_OPENING_STARTED 0x0101 257 EvvaComponent
TIMED_OPENING_FINISHED 0x0102 258 EvvaComponent
TIMED_OPENING_SKIPPED 0x0103 259 EvvaComponent
TIME_CHANGE_EXECUTED 0x0201 513 EvvaComponent
BATTERY_EMPTY 0x0B01 2817 EvvaComponent
FW_UPDATE_PERFORMED 0x0501 1281 MaintenanceComponent
PANIC_EXIT 0x0A01 2561 MaintenanceComponent
RTC_ERROR 0x0A02 2562 MaintenanceComponent
RTC_OFFSET 0xAB03 43779 AdministrationComponent

Queries

The interface allows to query information from the server.

It provides following resources and requires the given permissions:

Ressource Description Item Permission List Permission
identification-media Provides data for identification media ViewMedium ViewAllIdentificationMedia
authorization-profiles Provides data for authorization profiles ViewAuthorizationProfile ViewAllAuthorizationProfiles
access-protocol Provides access protocol entries ViewAccessProtocol ViewAccessProtocol
persons Provides data for people (holders of identification media) ViewAllPersons ViewAllPersons
installation-points Provides data for installation-points ViewInstallationPoint ViewAllInstallationPoints
zones Provides data for zones (sets of installation points) ViewZone ViewAllZones
evva-components Provides data for components ViewInstallationPoint ViewAllInstallationPoints
calendars Provides data for calendars in the system ViewCalendar ViewAllCalendars
office-modes Provides data for office-mode configuration ViewAllOfficeModes ViewAllOfficeModes
time-profiles Provides data for time profile configuration ViewTimeProfile ViewAllTimeProfiles

Publishing queries

To publish a query use the topic:

xs3/1/q

Following example shows the fields to be set for a valid query request (publish):

{
    "requestId": "dbb19a4e-7b8a-4339-b14d-843b4c9a67f3",
    "token": "2610b015-4085-4b0e-a192-cc4c40442e84",
    "resource": "installation-points",
    "id": "1657d066-3cb0-4925-8c7d-7b7deba40a1f",
    "params": null
}
  • requestId: is used as a $reference value and is given in the returned query response so that the client can build a relation between a query request and the resulting response. This field is required. The requestId must be a valid UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier). Please consult the documentation of your development language as UUID support is available in all major programming languages.
  • token: Required. This is the login token you receive after logging in via the LoginCommand. This is also a valid UUID.
  • resource: Required. The name of the entity you want to query (e.g. 'persons').
  • id: Optional. The id of a specific entity. This is again a valid UUID. If specified you get a single entity, otherwise you receive the list of all entities.
  • params: Optional. The api query parameters (see below)

Api query parameter

Structure of the optional params field. Example to get insecure installation points.

{
    "pageOffset": 0,
    "pageLimit": 50,
    "sort": "name",
    "language": "de",
    "filters": [{
       "type": eq
        "field": secure;
        "value": false;
    }]
}

Receiving the entity or list of entities

Api query response

After a query was successfully received, one of two situations can occur. A success is confirmed by publishing a query response to the query response topic:

xs3/1/<userId>/q

In case of an error, an error message is published to the error topic:

xs3/1/err/<userId>

The api query response structure is as follows:

{
    "requestId": "dbb19a4e-7b8a-4339-b14d-843b4c9a67f3",
    "response": {},
}
  • requestId: The above mentioned $reference value for the query.
  • response: The queried entity. Either a single entity (e.g. an installation point) or a list of entities (e.g. all installation points).

Response structure when querying a list:

{
    "data": [],
    "filterCount": 23,
    "totalCount": 50,
}
  • data: A list of single entities (see below).
  • filterCount: The count of entities, which matched the specified filters.
  • totalCount: The total count of entities.

Example for a single entity:

{
   "id": "e65c5393-5493-45ac-948f-7a485fcf4493"
   "name": "A Einbauort"
   "description": "Haupteingang"
   "accessId": 10
   "componentType": "Handle"
   "installationId": "A Einbauort"
   "installationType": ""
   ...
}

Given that the system may hold a huge number of entries, there are two mechanisms that can be used to handle them:

  1. a paging mechanism that allows to obtain batches of entries
  2. a filter mechanism that allows to filter results at server side

These two mechanisms can and should be combined as necessary.

Paging

image

This mechanism can be triggered by the specification of query parameters with a pageOffset and a pageLimit key:value pair. For easier handling, the recommended way is to retrieve a single entry, inspect the filterCount and then retrieve the corresponding amount of pages gradually.

Filtering

Queries can be made with a params object that contains a filter.

Query with Filters example

PUB: xs3/1/524e50d2-f54c-43d9-87cd-2e925c885d9f/q

{
    "requestId":"b57952fc-c167-4338-bc31-564ff5575a57",
    "token":"JDJhJDEwJGZ4RWpXM3liS1QuUVhadGF0b3ZzenVMaWthNVR1U0FzUnU1bnhuckNWZzNDSnMwSVF2U0dL",
    "resource":"access-protocol",
    "params": {
        "pageOffset":0,
        "pageLimit":50,
        "filters":[
            {
                "type":"eq",
                "field":"eventType",
                "value":"BATTERY_EMPTY"
            }
        ]
    }
}

Journal Filters

Journal Filter example

{
  "type":"eq",
  "field":"category",
  "value":"installationPoints"
}
Filter by Field name Filter type(s)
Entry Category category eq
User userName contains
Action actionType eq
Date, since createdAt gte
Category Values
installationPoints
officeModes
identificationMedia
keycredits
persons
calendars
timeProfiles
authorizationProfiles
maintenanceComponents
codingStations
zones
users
userGroups
partitions
Action Values
create
update
delete
Date Value
YYYY-MM-DD

Access Protocol Filters

Filter by Field name Filter type(s)
Date (from, to) timestampUtc custom
Event Group groupOfEvent eq
Event Type eventType eq
Person person like
Installation Point Name installationPointName like
Installation Point ID installationPointIdentifier like
Identification Medium Label identificationMediumLabel like
Zone Identifiers zoneIds contains
Access Point
Date Value Filters
YYYY-MM-DD Entries from date
;YYYY-MM-DD Entries to date
YYYY-MM-DD;YYYY-MM-DD Entries from first date to second date
Event Group Values
MediumEvents
EvvaComponent
MaintenanceComponent
AdministrationComponent
Event Type Values Event Group
OPENING_NORMAL MediumEvents
OPENING_EMERGENCY MediumEvents
MANUAL_OPENING_STARTED MediumEvents
MANUAL_OPENING_FINISHED MediumEvents
MEDIUM_RESTRICTED MediumEvents
OPENING_NORMAL_PROLONGED MediumEvents
OPENING_EMERGENCY_PROLONGED MediumEvents
OPENING_EMERGENCY_INVALID_BLACKLIST_OR_TIME MediumEvents
OPENING_EMERGENCY_PROLONGED_INVALID_BLACKLIST_OR_TIME MediumEvents
KILL_MEDIUM MediumEvents
TIMED_OPENING_STARTED EvvaComponent
TIMED_OPENING_FINISHED EvvaComponent
TIMED_OPENING_SKIPPED EvvaComponent
TIME_CHANGE_EXECUTED EvvaComponent
BATTERY_EMPTY EvvaComponent
FW_UPDATE_PERFORMED MaintenanceComponent
PANIC_EXIT MaintenanceComponent
RTC_ERROR MaintenanceComponent
RTC_OFFSET AdministrationComponent

Changelog

[1.2.1]

Added

Changed

  • Fixed layout of table in changelog.

Removed

[1.2.0]

Added

Changed

Bugfix for Event Numbers

Fixed event numbers of the following events:

Event Name Old Event Number New Event Number
OPENING_NORMAL_BLACKLISTED (0x0001) (0xA001)
OPENING_EMERGENCY_BLACKLISTED (0x0002) (0xA002)
MANUAL_OPENING_STARTED_BLACKLISTED (0x0003) (0xA003)
OPENING_NORMAL_PROLONGED_BLACKLISTED (0x0007) (0xA007)
OPENING_EMERGENCY_PROLONGED_BLACKLISTED (0xA008) (0xA008)
OPENING_EMERGENCY_INVALID_BLACKLIST_OR_TIME_BLACKLISTED (0x0009) (0xA009)
OPENING_EMERGENCY_PROLONGED_INVALID_BLACKLIST_OR_TIME_BLACKLISTED (0x000A) (0xA00A)
FW_UPDATED NULL (0xA501)
FW_UPDATED_PARTIAL_FAIL NULL (0xA502)
FW_UPDATED_TOTAL_FAIL NULL (0xA503)
NONCE_OFFSET NULL (0xAB04)
OPENING_NORMAL_REMOTE (0x0001) (0xB001)
MANUAL_OPENING_STARTED_REMOTE (0x0003) (0xB003)
MANUAL_OPENING_FINISHED_REMOTE (0x0004) (0xB004)
OPENING_NORMAL_PROLONGED_REMOTE (0x0007) (0xB007)
OPENING_NORMAL_SWITCH (0x0001) (0xC001)

Bugfix for Event Groups

Fixed event groups of the following events:

Event Name Event Number (hex) Old Event Group New Event Group
OPENING_NORMAL_BLACKLISTED (0xA001) AdministrationComponent MediumEvents
OPENING_EMERGENCY_BLACKLISTED (0xA002) AdministrationComponent MediumEvents
MANUAL_OPENING_STARTED_BLACKLISTED (0xA003) AdministrationComponent MediumEvents
OPENING_NORMAL_PROLONGED_BLACKLISTED (0xA007) AdministrationComponent MediumEvents
OPENING_EMERGENCY_PROLONGED_BLACKLISTED (0xA008) AdministrationComponent MediumEvents
OPENING_EMERGENCY_INVALID_BLACKLIST_OR_TIME_BLACKLISTED (0xA009) AdministrationComponent MediumEvents
OPENING_EMERGENCY_PROLONGED_INVALID_BLACKLIST_OR_TIME_BLACKLISTED (0xA00A) AdministrationComponent MediumEvents
OPENING_NORMAL_REMOTE (0xB001) MediumEvents AdministrationComponent
MANUAL_OPENING_STARTED_REMOTE (0xB003) MediumEvents AdministrationComponent
MANUAL_OPENING_FINISHED_REMOTE (0xB004) MediumEvents AdministrationComponent
OPENING_NORMAL_PROLONGED_REMOTE (0xB007) MediumEvents AdministrationComponent
OPENING_NORMAL_SWITCH (0xC001) MediumEvents AdministrationComponent

Removed

[1.1.1]

Added

Changed

  • Fixed typo in the description of Access Protocol Events.

Removed

[1.1.0]

Added

  • Provide asyncapi.yaml

Changed

Removed

[1.0.0]

Added

  • Initial documentation

Changed

Removed

Operations

  • SUB xs3/1/ase/{groupOfEvent}/{eventNumber}

    groupOfEvent
    required
    string
    uid: groupOfEvent

    groupOfEvent

    eventNumber
    required
    string
    uid: eventNumber

    eventNumber

    • #Access Protocol Events

    Accepts the following message:

    EventLogEntryDto

    Topic to subscribe to get the incoming logs for a given group of events and event number.
    Event groups: NoGroup, MediumEvents, EvvaComponent, MaintenanceComponent, AdministrationComponent.

    object

    Examples

  • SUB xs3/1/ces/AddMediumToInstallationRequested

    • #System Events

    Accepts the following message:

    AddMediumToInstallationRequested

    Required permission: AddIdentificationMedium

    Commands confirmed by this event:

     • RequestAddMediumToInstallationMapi

    object

    Examples

  • SUB xs3/1/ces/AuthorizationProfileAccessChanged

    • #System Events

    Accepts the following message:

    AuthorizationProfileAccessChanged

    Whenever the authorization data of an authorization profile was changed, this is event is emitted.

    For instance, when the standard time profile was changed, an installation point was added/removed, a specific time profile was assigned to a zone or a previously assigned time profile was unassigned. However, the event is not emitted if the access times of a time profile were changed, see {@link AuthorizationTimeProfileAccessTimesChanged} for this.

    Required permission: ChangeAuthorizationProfileData

    Commands confirmed by this event:

     • ChangeAuthorizationProfileMapi

    object

    Examples

  • SUB xs3/1/ces/AuthorizationProfileChanged

    • #System Events

    Accepts the following message:

    AuthorizationProfileChanged

    Required permission: ChangeAuthorizationProfileData

    Commands confirmed by this event:

     • ChangeAuthorizationProfileMapi

    object

    Examples

  • SUB xs3/1/ces/AuthorizationProfileCreated

    • #System Events

    Accepts the following message:

    AuthorizationProfileCreated

    Required permission: CreateAuthorizationProfile

    Commands confirmed by this event:

     • CreateAuthorizationProfileMapi

    object

    Examples

  • SUB xs3/1/ces/AuthorizationProfileDeleted

    • #System Events

    Accepts the following message:

    AuthorizationProfileDeleted

    Required permission: RemoveAuthorizationProfile

    Commands confirmed by this event:

     • DeleteAuthorizationProfileMapi

    object

    Examples

  • SUB xs3/1/ces/AuthorizationProfileInfoChanged

    • #System Events

    Accepts the following message:

    AuthorizationProfileInfoChanged

    Required permission: ChangeAuthorizationProfileData

    Commands confirmed by this event:

     • ChangeAuthorizationProfileMapi

    object

    Examples

  • SUB xs3/1/ces/AuthorizationProfileWithdrawnFromMedium

    • #System Events

    Accepts the following message:

    AuthorizationProfileWithdrawnFromMedium

    Withdraw means that we don't have the physical medium in our hands. We remove the authorizations. The next time the medium is updated, authorizations will be removed from the physical card. Most likely this will happen at an online-wallreader.

    Required permission: WithdrawAllAuthorizations

    Commands confirmed by this event:

     • WithdrawAuthorizationProfileFromMediumMapi

    object

    Examples

  • SUB xs3/1/ces/AuthorizationTimeProfileChanged

    • #System Events

    Accepts the following message:

    AuthorizationTimeProfileChanged

    Required permission: ChangeTimeProfile

    Commands confirmed by this event:

     • ChangeAuthorizationTimeProfileMapi

    object

    Examples

  • SUB xs3/1/ces/AuthorizationTimeProfileCreated

    • #System Events

    Accepts the following message:

    AuthorizationTimeProfileCreated

    Required permission: CreateTimeProfile

    Commands confirmed by this event:

     • CreateAuthorizationTimeProfileMapi

    object

    Examples

  • SUB xs3/1/ces/AuthorizationTimeProfileDeleted

    • #System Events

    Accepts the following message:

    AuthorizationTimeProfileDeleted

    Required permission: RemoveTimeProfile

    Commands confirmed by this event:

     • DeleteAuthorizationTimeProfileMapi

    object

    Examples

  • SUB xs3/1/ces/CalendarChanged

    • #System Events

    Accepts the following message:

    CalendarChanged

    Required permission: ChangeCalendar

    Commands confirmed by this event:

     • ChangeCalendarMapi

    object

    Examples

  • SUB xs3/1/ces/CalendarCreated

    • #System Events

    Accepts the following message:

    CalendarCreated

    Required permission: CreateCalendar

    Commands confirmed by this event:

     • CreateCalendarMapi

    object

    Examples

  • SUB xs3/1/ces/CalendarDeleted

    • #System Events

    Accepts the following message:

    CalendarDeleted

    Required permission: RemoveCalendar

    Commands confirmed by this event:

     • DeleteCalendarMapi

    object

    Examples

  • SUB xs3/1/ces/CodingStationChanged

    • #System Events

    Accepts the following message:

    CodingStationChanged

    Required permission: ChangeCodingStationData

    Commands confirmed by this event:

     • ChangeCodingStationMapi

    object

    Examples

  • SUB xs3/1/ces/CodingStationCreated

    • #System Events

    Accepts the following message:

    CodingStationCreated

    Required permission: AddCodingStation

    Commands confirmed by this event:

     • CreateCodingStationMapi

    object

    Examples

  • SUB xs3/1/ces/CodingStationDeleted

    • #System Events

    Accepts the following message:

    CodingStationDeleted

    Required permission: RemoveCodingStation

    Commands confirmed by this event:

     • DeleteCodingStationMapi

    object

    Examples

  • SUB xs3/1/ces/EvvaComponentAdded

    • #System Events

    Accepts the following message:

    EvvaComponentAdded

    Required permission: ChangeInstallationPointData

    Commands confirmed by this event:

     • CreateInstallationPointMapi

     • AddEvvaComponentMapi

    object

    Examples

  • SUB xs3/1/ces/EvvaComponentRemovalPrepared

    • #System Events

    Accepts the following message:

    EvvaComponentRemovalPrepared

    Required permission: RemoveEvvaComponent

    Commands confirmed by this event:

     • PrepareRemovalOfEvvaComponentMapi

    object

    Examples

  • SUB xs3/1/ces/EvvaComponentRemoved

    • #System Events

    Accepts the following message:

    EvvaComponentRemoved

    Required permission: RemoveFaultyEvvaComponent

    Commands confirmed by this event:

     • ForceRemoveEvvaComponentMapi

    object

    Examples

  • SUB xs3/1/ces/FindComponentPerformed

    • #System Events

    Accepts the following message:

    FindComponentPerformed

    Required permission: SearchOnlineEvvaComponent

    Commands confirmed by this event:

     • FindComponentMapi

    object

    Examples

  • SUB xs3/1/ces/IndividualAuthorizationsAddedToMedium

    • #System Events

    Accepts the following message:

    IndividualAuthorizationsAddedToMedium

    Required permission: any of:

     • AssignInstallationPointIndividualAuthorization

     • AssignZoneIndividualAuthorization

    Commands confirmed by this event:

     • AddInstallationPointAuthorizationToMediumMapi

     • AddZoneAuthorizationToMediumMapi

    object

    Examples

  • SUB xs3/1/ces/IndividualAuthorizationsDeleted

    • #System Events

    Accepts the following message:

    IndividualAuthorizationsDeleted

    Required permission: any of:

     • RemoveInstallationPointIndividualAuthorization

     • RemoveZoneIndividualAuthorization

    Commands confirmed by this event:

     • RemoveZoneAuthorizationFromMediumMapi

     • RemoveInstallationPointAuthorizationFromMediumMapi

    object

    Examples

  • SUB xs3/1/ces/InstallationPointChanged

    • #System Events

    Accepts the following message:

    InstallationPointChanged

    Required permission: any of:

     • AssignOfficeModeTimeProfileToInstallationPoint

     • ChangeInstallationPointData

     • ConfigureLoggingPersonalDataForInstallationPoint

     • ConfigureManualOfficeModeAndShopMode

     • ConfigureMediaUpgrade

     • ConfigureReleaseDuration

    Commands confirmed by this event:

     • ConfigureManualOfficeModeAndShopModeMapi

     • ChangeInstallationPointMapi

     • ConfigureMediaUpgradeMapi

     • ConfigureReleaseDurationMapi

     • ConfigureOfficeModeTimeProfileMapi

     • SetPersonalReferenceDurationForInstallationPointMapi

     • AddEvvaComponentMapi

    object

    Examples

  • SUB xs3/1/ces/InstallationPointCreated

    • #System Events

    Accepts the following message:

    InstallationPointCreated

    Required permission: AddInstallationPoint

    Commands confirmed by this event:

     • CreateInstallationPointMapi

    object

    Examples

  • SUB xs3/1/ces/InstallationPointDeleted

    • #System Events

    Accepts the following message:

    InstallationPointDeleted

    Required permission: RemoveInstallationPoint

    Commands confirmed by this event:

     • DeleteInstallationPointMapi

    object

    Examples

  • SUB xs3/1/ces/InstallationPointsInZoneChanged

    • #System Events

    Accepts the following message:

    InstallationPointsInZoneChanged

    Required permission: any of:

     • AssignInstallationPointToZone

     • RemoveInstallationPointFromZone

    Commands confirmed by this event:

     • RemoveInstallationPointFromZoneMapi

     • AddInstallationPointToZoneMapi

    object

    Examples

  • SUB xs3/1/ces/LoggedOut

    • #Session

    Accepts the following message:

    LoggedOut

    Required permission: LoginAdministrationComponent

    Commands confirmed by this event:

     • Logout

    object

    Examples

  • SUB xs3/1/ces/MediumAddedToInstallation

    • #System Events

    Accepts the following message:

    MediumAddedToInstallation

    Required permission: AddIdentificationMedium

    Commands confirmed by this event:

     • RequestAddMediumToInstallationMapi

    object

    Examples

  • SUB xs3/1/ces/MediumAuthorizationProfileChanged

    • #System Events

    Accepts the following message:

    MediumAuthorizationProfileChanged

    Required permission: AssignAuthorizationProfileToIdentificationMedium

    Commands confirmed by this event:

     • AssignAuthorizationProfileToMediumMapi

    object

    Examples

  • SUB xs3/1/ces/MediumChanged

    • #System Events

    Accepts the following message:

    MediumChanged

    Required permission: any of:

     • ChangeDisengagePeriodOnMedium

     • ChangeValidityDurationOnMedium

     • SetAuthorizationBeginAtOnMedium

     • SetAuthorizationEndAtOnMedium

     • SetMediumLabel

    Commands confirmed by this event:

     • SetAccessEndAtMapi

     • SetDisengagePeriodOnMediumMapi

     • AssignAuthorizationProfileToMediumMapi

     • SetAccessBeginAtMapi

     • SetValidityDurationMapi

     • SetLabelOnMediumMapi

    object

    Examples

  • SUB xs3/1/ces/MediumLocked

    • #System Events

    Accepts the following message:

    MediumLocked

    Required permission: LockMedium

    Commands confirmed by this event:

     • LockMediumMapi

    object

    Examples

  • SUB xs3/1/ces/MediumPersonChanged

    • #System Events

    Accepts the following message:

    MediumPersonChanged

    Required permission: AssignMediumToPerson

    Commands confirmed by this event:

     • AssignPersonToMediumMapi

    object

    Examples

  • SUB xs3/1/ces/OfficeModeTimeProfileChanged

    • #System Events

    Accepts the following message:

    OfficeModeTimeProfileChanged

    Required permission: ChangeTimeProfile

    Commands confirmed by this event:

     • ChangeOfficeModeTimeProfileMapi

    object

    Examples

  • SUB xs3/1/ces/OfficeModeTimeProfileCreated

    • #System Events

    Accepts the following message:

    OfficeModeTimeProfileCreated

    Required permission: CreateTimeProfile

    Commands confirmed by this event:

     • CreateOfficeModeTimeProfileMapi

    object

    Examples

  • SUB xs3/1/ces/OfficeModeTimeProfileDeleted

    • #System Events

    Accepts the following message:

    OfficeModeTimeProfileDeleted

    Required permission: RemoveTimeProfile

    Commands confirmed by this event:

     • DeleteOfficeModeTimeProfileMapi

    object

    Examples

  • SUB xs3/1/ces/PartitionChanged

    • #System Events

    Accepts the following message:

    PartitionChanged

    Required permission: any of:

     • ConfigureDailySchedulerExecutionTime

     • ConfigureDefaultLoggingPersonalDataForInstallationPoint

     • ConfigureDefaultLoggingPersonalDataForPerson

     • ConfigureValidityThreshold

     • SetDefaultAccessDurationForReplacedMedium

     • SetDefaultMediumValidityDurationForPartition

    Commands confirmed by this event:

     • SetReplacementMediumDurationMapi

     • SetInstallationPointPersonalReferenceDurationMapi

     • SetValidityThresholdMapi

     • SetPersonPersonalReferenceDurationMapi

     • SetDailySchedulerExecutionTimeMapi

     • SetDefaultValidityDurationMapi

    object

    Examples

  • SUB xs3/1/ces/PersonChanged

    • #System Events

    Accepts the following message:

    PersonChanged

    Required permission: any of:

     • ChangePersonData

     • ConfigureLoggingPersonalDataForPerson

     • SetDefaultAuthorizationProfileForPerson

     • SetDefaultDisengagePeriodForPerson

    Commands confirmed by this event:

     • ChangePersonInformationMapi

     • SetDefaultAuthorizationProfileForPersonMapi

     • SetDefaultDisengagePeriodForPersonMapi

     • SetPersonalReferenceDurationInPersonMapi

    object

    Examples

  • SUB xs3/1/ces/PersonCreated

    • #System Events

    Accepts the following message:

    PersonCreated

    Required permission: CreatePerson

    Commands confirmed by this event:

     • CreatePersonMapi

    object

    Examples

  • SUB xs3/1/ces/PersonDeleted

    • #System Events

    Accepts the following message:

    PersonDeleted

    Required permission: RemovePerson

    Commands confirmed by this event:

     • DeletePersonMapi

    object

    Examples

  • SUB xs3/1/ces/PrepareEvvaComponentRemovalReverted

    • #System Events

    Accepts the following message:

    PrepareEvvaComponentRemovalReverted

    Required permission: RevertRemoveComponent

    Commands confirmed by this event:

     • RevertPrepareRemovalOfEvvaComponentMapi

    object

    Examples

  • SUB xs3/1/ces/RemoteDisengagePerformed

    • #System Events

    Accepts the following message:

    RemoteDisengagePerformed

    Required permission: TriggerRemoteDisengage

    Commands confirmed by this event:

     • RemoteDisengageMapi

    object

    Examples

  • SUB xs3/1/ces/RemoteDisengagePermanentPerformed

    • #System Events

    Accepts the following message:

    RemoteDisengagePermanentPerformed

    Required permission: TriggerRemoteDisengage

    Commands confirmed by this event:

     • RemoteDisengagePermanentMapi

    object

    Examples

  • SUB xs3/1/ces/UnauthorizedLoginAttempt

    • #Session

    Accepts the following message:

    UnauthorizedLoginAttempt

    Login attempt with wrong credentials. System administrators can monitor this message for attack mitigation.

    object

    Examples

  • SUB xs3/1/ces/UserGroupChanged

    • #System Events

    Accepts the following message:

    UserGroupChanged

    Required permission: CreateAuthorizationProfile

    Commands confirmed by this event:

     • ConfigureAssignableAuthorizationProfilesMapi

    object

    Examples

  • SUB xs3/1/ces/ZoneChanged

    • #System Events

    Accepts the following message:

    ZoneChanged

    Required permission: ChangeZoneData

    Commands confirmed by this event:

     • ChangeZoneDataMapi

    object

    Examples

  • SUB xs3/1/ces/ZoneCreated

    • #System Events

    Accepts the following message:

    ZoneCreated

    Required permission: CreateZone

    Commands confirmed by this event:

     • CreateZoneMapi

    object

    Examples

  • SUB xs3/1/ces/ZoneDeleted

    • #System Events

    Accepts the following message:

    ZoneDeleted

    Required permission: RemoveZone

    Commands confirmed by this event:

     • DeleteZoneMapi

    object

    Examples

  • PUB xs3/1/cmd/AddEvvaComponentMapi

    • #Command

    Accepts the following message:

    AddEvvaComponentMapi

    Add an Evva component to an existing installation point.

    Required permission: ChangeInstallationPointData

    Events confirming this command:

     • InstallationPointChanged

     • EvvaComponentAdded

    object

    Examples

  • PUB xs3/1/cmd/AddInstallationPointAuthorizationToMediumMapi

    • #Command

    Accepts the following message:

    AddInstallationPointAuthorizationToMediumMapi

    Add individual authorisation for an installation point.

    Required permission: AssignInstallationPointIndividualAuthorization

    Events confirming this command:

     • IndividualAuthorizationsAddedToMedium

    object

    Examples

  • PUB xs3/1/cmd/AddInstallationPointToZoneMapi

    • #Command

    Accepts the following message:

    AddInstallationPointToZoneMapi

    Required permission: AssignInstallationPointToZone

    Events confirming this command:

     • InstallationPointsInZoneChanged

    object

    Examples

  • PUB xs3/1/cmd/AddZoneAuthorizationToMediumMapi

    • #Command

    Accepts the following message:

    AddZoneAuthorizationToMediumMapi

    Required permission: AssignZoneIndividualAuthorization

    Events confirming this command:

     • IndividualAuthorizationsAddedToMedium

    object

    Examples

  • PUB xs3/1/cmd/AssignAuthorizationProfileToMediumMapi

    • #Command

    Accepts the following message:

    AssignAuthorizationProfileToMediumMapi

    Required permission: AssignAuthorizationProfileToIdentificationMedium

    Events confirming this command:

     • MediumChanged

     • MediumAuthorizationProfileChanged

    object

    Examples

  • PUB xs3/1/cmd/AssignPersonToMediumMapi

    • #Command

    Accepts the following message:

    AssignPersonToMediumMapi

    Required permission: AssignMediumToPerson

    Events confirming this command:

     • MediumPersonChanged

    object

    Examples

  • PUB xs3/1/cmd/ChangeAuthorizationProfileMapi

    • #Command

    Accepts the following message:

    ChangeAuthorizationProfileMapi

    Required permission: ChangeAuthorizationProfileData

    Events confirming this command:

     • AuthorizationProfileChanged

     • AuthorizationProfileInfoChanged

     • AuthorizationProfileAccessChanged

    object

    Examples

  • PUB xs3/1/cmd/ChangeAuthorizationTimeProfileMapi

    • #Command

    Accepts the following message:

    ChangeAuthorizationTimeProfileMapi

    Required permission: ChangeTimeProfile

    Events confirming this command:

     • AuthorizationTimeProfileChanged

    object

    Examples

  • PUB xs3/1/cmd/ChangeCalendarMapi

    • #Command

    Accepts the following message:

    ChangeCalendarMapi

    Required permission: ChangeCalendar

    Events confirming this command:

     • CalendarChanged

    object

    Examples

  • PUB xs3/1/cmd/ChangeCodingStationMapi

    • #Command

    Accepts the following message:

    ChangeCodingStationMapi

    Required permission: ChangeCodingStationData

    Events confirming this command:

     • CodingStationChanged

    object

    Examples

  • PUB xs3/1/cmd/ChangeInstallationPointMapi

    • #Command

    Accepts the following message:

    ChangeInstallationPointMapi

    Required permission: ChangeInstallationPointData

    Events confirming this command:

     • InstallationPointChanged

    object

    Examples

  • PUB xs3/1/cmd/ChangeOfficeModeTimeProfileMapi

    • #Command

    Accepts the following message:

    ChangeOfficeModeTimeProfileMapi

    Required permission: ChangeTimeProfile

    Events confirming this command:

     • OfficeModeTimeProfileChanged

    object

    Examples

  • PUB xs3/1/cmd/ChangePersonInformationMapi

    • #Command

    Accepts the following message:

    ChangePersonInformationMapi

    Required permission: ChangePersonData

    Events confirming this command:

     • PersonChanged

    object

    Examples

  • PUB xs3/1/cmd/ChangeZoneDataMapi

    • #Command

    Accepts the following message:

    ChangeZoneDataMapi

    Required permission: ChangeZoneData

    Events confirming this command:

     • ZoneChanged

    object

    Examples

  • PUB xs3/1/cmd/ConfigureAssignableAuthorizationProfilesMapi

    • #Command

    Accepts the following message:

    ConfigureAssignableAuthorizationProfilesMapi

    Can be used to specify which authorization profiles can be assigned to a user group. The authorization profiles are specified via an array of their IDs.

    Required permission: CreateAuthorizationProfile

    Events confirming this command:

     • UserGroupChanged

    object

    Examples

  • PUB xs3/1/cmd/ConfigureManualOfficeModeAndShopModeMapi

    • #Command

    Accepts the following message:

    ConfigureManualOfficeModeAndShopModeMapi

    Required permission: ConfigureManualOfficeModeAndShopMode

    Events confirming this command:

     • InstallationPointChanged

    object

    Examples

  • PUB xs3/1/cmd/ConfigureMediaUpgradeMapi

    • #Command

    Accepts the following message:

    ConfigureMediaUpgradeMapi

    Activate/Deactivate the XVN functionality for an installation-point.

    Required permission: ConfigureMediaUpgrade

    Events confirming this command:

     • InstallationPointChanged

    object

    Examples

  • PUB xs3/1/cmd/ConfigureOfficeModeTimeProfileMapi

    • #Command

    Accepts the following message:

    ConfigureOfficeModeTimeProfileMapi

    Required permission: AssignOfficeModeTimeProfileToInstallationPoint

    Events confirming this command:

     • InstallationPointChanged

    object

    Examples

  • PUB xs3/1/cmd/ConfigureReleaseDurationMapi

    • #Command

    Accepts the following message:

    ConfigureReleaseDurationMapi

    Required permission: ConfigureReleaseDuration

    Events confirming this command:

     • InstallationPointChanged

    object

    Examples

  • PUB xs3/1/cmd/CreateAuthorizationProfileMapi

    • #Command

    Accepts the following message:

    CreateAuthorizationProfileMapi

    Creates a new Authorization Profile.

    Required permission: CreateAuthorizationProfile

    Events confirming this command:

     • AuthorizationProfileCreated

    object

    Examples

  • PUB xs3/1/cmd/CreateAuthorizationTimeProfileMapi

    • #Command

    Accepts the following message:

    CreateAuthorizationTimeProfileMapi

    Required permission: CreateTimeProfile

    Events confirming this command:

     • AuthorizationTimeProfileCreated

    object

    Examples

  • PUB xs3/1/cmd/CreateCalendarMapi

    • #Command

    Accepts the following message:

    CreateCalendarMapi

    Required permission: CreateCalendar

    Events confirming this command:

     • CalendarCreated

    object

    Examples

  • PUB xs3/1/cmd/CreateCodingStationMapi

    • #Command

    Accepts the following message:

    CreateCodingStationMapi

    Required permission: AddCodingStation

    Events confirming this command:

     • CodingStationCreated

    object

    Examples

  • PUB xs3/1/cmd/CreateInstallationPointMapi

    • #Command

    Accepts the following message:

    CreateInstallationPointMapi

    Required permission: AddInstallationPoint

    Events confirming this command:

     • InstallationPointCreated

     • EvvaComponentAdded

    object

    Examples

  • PUB xs3/1/cmd/CreateOfficeModeTimeProfileMapi

    • #Command

    Accepts the following message:

    CreateOfficeModeTimeProfileMapi

    Required permission: CreateTimeProfile

    Events confirming this command:

     • OfficeModeTimeProfileCreated

    object

    Examples

  • PUB xs3/1/cmd/CreatePersonMapi

    • #Command

    Accepts the following message:

    CreatePersonMapi

    Creates a new Person.

    Required permission: CreatePerson

    Events confirming this command:

     • PersonCreated

    object

    Examples

  • PUB xs3/1/cmd/CreateZoneMapi

    • #Command

    Accepts the following message:

    CreateZoneMapi

    Creates a new Zone.

    Required permission: CreateZone

    Events confirming this command:

     • ZoneCreated

    object

    Examples

  • PUB xs3/1/cmd/DeleteAuthorizationProfileMapi

    • #Command

    Accepts the following message:

    DeleteAuthorizationProfileMapi

    Required permission: RemoveAuthorizationProfile

    Events confirming this command:

     • AuthorizationProfileDeleted

    object

    Examples

  • PUB xs3/1/cmd/DeleteAuthorizationTimeProfileMapi

    • #Command

    Accepts the following message:

    DeleteAuthorizationTimeProfileMapi

    Required permission: RemoveTimeProfile

    Events confirming this command:

     • AuthorizationTimeProfileDeleted

    object

    Examples

  • PUB xs3/1/cmd/DeleteCalendarMapi

    • #Command

    Accepts the following message:

    DeleteCalendarMapi

    Required permission: RemoveCalendar

    Events confirming this command:

     • CalendarDeleted

    object

    Examples

  • PUB xs3/1/cmd/DeleteCodingStationMapi

    • #Command

    Accepts the following message:

    DeleteCodingStationMapi

    Required permission: RemoveCodingStation

    Events confirming this command:

     • CodingStationDeleted

    object

    Examples

  • PUB xs3/1/cmd/DeleteInstallationPointMapi

    • #Command

    Accepts the following message:

    DeleteInstallationPointMapi

    Required permission: RemoveInstallationPoint

    Events confirming this command:

     • InstallationPointDeleted

    object

    Examples

  • PUB xs3/1/cmd/DeleteOfficeModeTimeProfileMapi

    • #Command

    Accepts the following message:

    DeleteOfficeModeTimeProfileMapi

    Required permission: RemoveTimeProfile

    Events confirming this command:

     • OfficeModeTimeProfileDeleted

    object

    Examples

  • PUB xs3/1/cmd/DeletePersonMapi

    • #Command

    Accepts the following message:

    DeletePersonMapi

    Required permission: RemovePerson

    Events confirming this command:

     • PersonDeleted

    object

    Examples

  • PUB xs3/1/cmd/DeleteZoneMapi

    • #Command

    Accepts the following message:

    DeleteZoneMapi

    Required permission: RemoveZone

    Events confirming this command:

     • ZoneDeleted

    object

    Examples

  • PUB xs3/1/cmd/FindComponent

    • #Command

    Accepts the following message:

    FindComponent

    Enable/disable the beeping signal to find the component.

    Required permission: SearchOnlineEvvaComponent

    Events confirming this command:

     • FindComponentPerformed

    object

    Examples

  • PUB xs3/1/cmd/ForceRemoveEvvaComponentMapi

    • #Command

    Accepts the following message:

    ForceRemoveEvvaComponentMapi

    Required permission: RemoveFaultyEvvaComponent

    Events confirming this command:

     • EvvaComponentRemoved

    object

    Examples

  • PUB xs3/1/cmd/LockMediumMapi

    • #Command

    Accepts the following message:

    LockMediumMapi

    Required permission: LockMedium

    Events confirming this command:

     • MediumLocked

    object

    Examples

  • PUB xs3/1/cmd/Login

    • #Session

    Accepts the following message:

    Login

    Events confirming this command:

     • LoginPerformed

    object

    Examples

  • PUB xs3/1/cmd/Logout

    • #Session

    Accepts the following message:

    Logout

    Events confirming this command:

     • LoggedOut

    object

    Examples

  • PUB xs3/1/cmd/PrepareRemovalOfEvvaComponentMapi

    • #Command

    Accepts the following message:

    PrepareRemovalOfEvvaComponentMapi

    Required permission: RemoveEvvaComponent

    Events confirming this command:

     • EvvaComponentRemovalPrepared

    object

    Examples

  • PUB xs3/1/cmd/RemoteDisengage

    • #Command

    Accepts the following message:

    RemoteDisengage

    Required permission: TriggerRemoteDisengage

    Events confirming this command:

     • RemoteDisengagePerformed

    object

    Examples

  • PUB xs3/1/cmd/RemoteDisengagePermanent

    • #Command

    Accepts the following message:

    RemoteDisengagePermanent

    Required permission: TriggerRemoteDisengage

    Events confirming this command:

     • RemoteDisengagePermanentPerformed

    object

    Examples

  • PUB xs3/1/cmd/RemoveInstallationPointAuthorizationFromMediumMapi

    • #Command

    Accepts the following message:

    RemoveInstallationPointAuthorizationFromMediumMapi

    Required permission: RemoveInstallationPointIndividualAuthorization

    Events confirming this command:

     • IndividualAuthorizationsDeleted

    object

    Examples

  • PUB xs3/1/cmd/RemoveInstallationPointFromZoneMapi

    • #Command

    Accepts the following message:

    RemoveInstallationPointFromZoneMapi

    Required permission: RemoveInstallationPointFromZone

    Events confirming this command:

     • InstallationPointsInZoneChanged

    object

    Examples

  • PUB xs3/1/cmd/RemoveZoneAuthorizationFromMediumMapi

    • #Command

    Accepts the following message:

    RemoveZoneAuthorizationFromMediumMapi

    Remove individual authorisation for a zone.

    Required permission: RemoveZoneIndividualAuthorization

    Events confirming this command:

     • IndividualAuthorizationsDeleted

    object

    Examples

  • PUB xs3/1/cmd/RequestAddMediumToInstallationMapi

    • #Command

    Accepts the following message:

    RequestAddMediumToInstallationMapi

    Required permission: AddIdentificationMedium

    Events confirming this command:

     • AddMediumToInstallationRequested

     • MediumAddedToInstallation

    object

    Examples

  • PUB xs3/1/cmd/RevertPrepareRemovalOfEvvaComponentMapi

    • #Command

    Accepts the following message:

    RevertPrepareRemovalOfEvvaComponentMapi

    Required permission: RevertRemoveComponent

    Events confirming this command:

     • PrepareEvvaComponentRemovalReverted

    object

    Examples

  • PUB xs3/1/cmd/SetAccessBeginAtMapi

    • #Command

    Accepts the following message:

    SetAccessBeginAtMapi

    Sets the access begin of an identification medium.

    Required permission: SetAuthorizationBeginAtOnMedium

    Events confirming this command:

     • MediumChanged

    object

    Examples

  • PUB xs3/1/cmd/SetAccessEndAtMapi

    • #Command

    Accepts the following message:

    SetAccessEndAtMapi

    Sets the access end of an identification medium.

    Required permission: SetAuthorizationEndAtOnMedium

    Events confirming this command:

     • MediumChanged

    object

    Examples

  • PUB xs3/1/cmd/SetDailySchedulerExecutionTimeMapi

    • #Command

    Accepts the following message:

    SetDailySchedulerExecutionTimeMapi

    Required permission: ConfigureDailySchedulerExecutionTime

    Events confirming this command:

     • PartitionChanged

    object

    Examples

  • PUB xs3/1/cmd/SetDefaultAuthorizationProfileForPersonMapi

    • #Command

    Accepts the following message:

    SetDefaultAuthorizationProfileForPersonMapi

    Required permission: SetDefaultAuthorizationProfileForPerson

    Events confirming this command:

     • PersonChanged

    object

    Examples

  • PUB xs3/1/cmd/SetDefaultDisengagePeriodForPersonMapi

    • #Command

    Accepts the following message:

    SetDefaultDisengagePeriodForPersonMapi

    Set whether short or long disengage period for a person.

    Required permission: SetDefaultDisengagePeriodForPerson

    Events confirming this command:

     • PersonChanged

    object

    Examples

  • PUB xs3/1/cmd/SetDefaultValidityDurationMapi

    • #Command

    Accepts the following message:

    SetDefaultValidityDurationMapi

    Required permission: SetDefaultMediumValidityDurationForPartition

    Events confirming this command:

     • PartitionChanged

    object

    Examples

  • PUB xs3/1/cmd/SetDisengagePeriodOnMediumMapi

    • #Command

    Accepts the following message:

    SetDisengagePeriodOnMediumMapi

    Required permission: ChangeDisengagePeriodOnMedium

    Events confirming this command:

     • MediumChanged

    object

    Examples

  • PUB xs3/1/cmd/SetInstallationPointPersonalReferenceDurationMapi

    • #Command

    Accepts the following message:

    SetInstallationPointPersonalReferenceDurationMapi

    Required permission: ConfigureDefaultLoggingPersonalDataForInstallationPoint

    Events confirming this command:

     • PartitionChanged

    object

    Examples

  • PUB xs3/1/cmd/SetLabelOnMediumMapi

    • #Command

    Accepts the following message:

    SetLabelOnMediumMapi

    Required permission: SetMediumLabel

    Events confirming this command:

     • MediumChanged

    object

    Examples

  • PUB xs3/1/cmd/SetPersonPersonalReferenceDurationMapi

    • #Command

    Accepts the following message:

    SetPersonPersonalReferenceDurationMapi

    Set the default value for personal $reference duration in the installation settings.

    Required permission: ConfigureDefaultLoggingPersonalDataForPerson

    Events confirming this command:

     • PartitionChanged

    object

    Examples

  • PUB xs3/1/cmd/SetPersonalReferenceDurationForInstallationPointMapi

    • #Command

    Accepts the following message:

    SetPersonalReferenceDurationForInstallationPointMapi

    Required permission: ConfigureLoggingPersonalDataForInstallationPoint

    Events confirming this command:

     • InstallationPointChanged

    object

    Examples

  • PUB xs3/1/cmd/SetPersonalReferenceDurationInPersonMapi

    • #Command

    Accepts the following message:

    SetPersonalReferenceDurationInPersonMapi

    Required permission: ConfigureLoggingPersonalDataForPerson

    Events confirming this command:

     • PersonChanged

    object

    Examples

  • PUB xs3/1/cmd/SetReplacementMediumDurationMapi

    • #Command

    Accepts the following message:

    SetReplacementMediumDurationMapi

    Required permission: SetDefaultAccessDurationForReplacedMedium

    Events confirming this command:

     • PartitionChanged

    object

    Examples

  • PUB xs3/1/cmd/SetValidityDurationMapi

    • #Command

    Accepts the following message:

    SetValidityDurationMapi

    Required permission: ChangeValidityDurationOnMedium

    Events confirming this command:

     • MediumChanged

    object

    Examples

  • PUB xs3/1/cmd/SetValidityThresholdMapi

    • #Command

    Accepts the following message:

    SetValidityThresholdMapi

    Required permission: ConfigureValidityThreshold

    Events confirming this command:

     • PartitionChanged

    object

    Examples

  • PUB xs3/1/cmd/WithdrawAuthorizationProfileFromMediumMapi

    • #Command

    Accepts the following message:

    WithdrawAuthorizationProfileFromMediumMapi

    @see @{@link com.evva.aess.writeside.identificationmedium.event.AuthorizationProfileWithdrawnFromMedium} or at AuthorizationProfileWithdrawnFromMedium.

    Required permission: WithdrawAllAuthorizations

    Events confirming this command:

     • AuthorizationProfileWithdrawnFromMedium

    object

    Examples

  • PUB xs3/1/q

    • #Query

    Accepts the following message:

    ApiQueryRequest

    Request payload for queries.
    To get the wanted resource, you need to have the needed permissions for access as described below..

    Resource                                     Item permission                             List permission
    access-protocol - ViewAccessProtocol
    authorization-profiles ViewAuthorizationProfile ViewAllAuthorizationProfiles
    calendars ViewCalendar ViewAllCalendars
    coding-stations ViewCodingStation ViewAllCodingStations
    evva-components ViewInstallationPoint ViewAllInstallationPoints
    identification-media ViewMedium ViewAllIdentificationMedia
    installation-points ViewInstallationPoint ViewAllInstallationPoints
    office-modes - ViewAllOfficeModes
    persons ViewPerson ViewAllPersons
    time-profiles ViewTimeProfile ViewAllTimeProfiles
    users - ViewAllPersons
    zones ViewZone ViewAllZones
    object

    Examples

  • SUB xs3/1/{userId}/LoggedIn

    userId
    required
    string
    uid: userId

    The user id.

    • #Session

    Accepts the following message:

    LoginPerformed

    Topic to get the token for the given user after login, to publish all other commands.

    object

    Examples

  • SUB xs3/1/{userId}/err

    userId
    required
    string
    uid: userId

    The user id.

    • #Errors

    Accepts the following message:

    ApiError

    Topic to get error messages for the given user.

    object

    Examples

  • SUB xs3/1/{userId}/q

    userId
    required
    string
    uid: userId

    The user id.

    • #Query

    Accepts one of the following messages:

    • #0QueryResponse-authorization-profiles
      object

      Examples

    • #1QueryResponse-access-protocol
      object

      Examples

    • #2QueryResponse-installation-points
      object

      Examples

    • #3QueryResponse-office-modes
      object

      Examples

    • #4QueryResponse-users
      object

      Examples

    • #5QueryResponse-zones
      object

      Examples

    • #6QueryResponse-time-profiles
      object

      Examples

    • #7QueryResponse-identification-media
      object

      Examples

    • #8QueryResponse-evva-components
      object

      Examples

    • #9QueryResponse-coding-stations
      object

      Examples

    • #10QueryResponse-persons
      object

      Examples

    • #11QueryResponse-calendars
      object

      Examples

Schemas

  • Boolean
    boolean
    uid: Boolean
  • object
    uid: InetAddress
  • Integer
    integer
    format: int32uid: Integer
  • LocalDate
    string
    format: dateuid: LocalDate

    Local date. Example: 2018-02-25

  • LocalDateTime
    string
    format: date-timeuid: LocalDateTime

    Local date & time. Example: 2018-02-25T23:59

  • LocalTime
    string
    format: timeuid: LocalTime

    Local time. Example: 23:59

  • Long
    integer
    format: int64uid: Long
  • object
    uid: Map
  • Short
    integer
    format: int32uid: Short
  • String
    string
    uid: String
  • UUID
    string
    format: uuiduid: UUID

    Universally Unique Identifier

  • object
    uid: UUID[]
  • object
    uid: ZoneOffsetTransition
  • boolean
    boolean
    uid: boolean
  • object
    uid: byte[]
  • object
    uid: char
  • int
    integer
    format: int32uid: int
  • long
    integer
    format: int64uid: long