This API is compliant with the following Keyple server side components:
- Keyple Service Library version
3.0.0+
- Keyple Distributed Network Library version
2.3.0+
- Keyple Distributed Remote Library version
2.3.0+
Changelog
This major release follows the restructuring of the CardSelector
object.
MessageDto
The diagram below shows the structure of the MessageDto
object but the detailed content will be described in the
sections associated with each message type:
action
property determines the message type.Execute Remote Service
The purpose of this message, sent to the server, is to initiate the server-controlled card transaction.
By using the identification properties provided by the terminal in its subsequent responses, the server ensures consistent and accurate data flow management throughout the entire system.
Following the transmission of this message, the server will return a message of type “Command”, containing the first action to be performed with the card or the terminal’s reader, or of type “End Remote Service” to terminate the transaction.
The following UML class diagram illustrates the structure of this object and may help to implement it in the development language of the target terminal.
MessageDto
apiLevel | Number Constant value: 2 |
sessionId | String The session identifier. It shall be unique per card transaction. |
action | String Constant value: “EXECUTE_REMOTE_SERVICE” |
clientNodeId | String The terminal identifier. It shall be unique per server. |
serverNodeId | String (n/a) Null or absent. |
localReaderName | String The identifier of the local reader used to perform the card transaction. It shall be unique per terminal. |
remoteReaderName | String (n/a) Null or absent. |
body | String A JSON string containing a ExecuteRemoteServiceBody JSON object. |
ExecuteRemoteServiceBody
coreApiLevel | Number Constant value: 2 |
serviceId | String The identifier of the business service to be executed by the server. It’s a naming convention between the client and the server. |
inputData | Object (optional) An optional object containing additional data to be provided to the remote business service. Its content is a convention between the client and the server. |
Example
{
"apiLevel": 2,
"sessionId": "b1b8ed38-bae6-4b2e-a747-67d233652ea9",
"action": "EXECUTE_REMOTE_SERVICE",
"clientNodeId": "ca21fd3c-a055-4be5-aad1-c61af3528371",
"localReaderName": "READER_1",
"body": "{\"coreApiLevel\":2,\"serviceId\":\"AUTHENTICATE_CARD\",\"inputData\":{\"userId\":\"7b13592c-0d21-429b-80d2-3dc565338ea3\"}}"
}
Command
The purpose of this message, received from the server, is to ask the terminal to perform a specific service with the card or the terminal’s reader.
There are four types of service potentially requested by the server:
Service | Description |
---|---|
Reader Type | Indicates if the reader is in contact or contactless mode. |
Card Presence | Indicates if a card is present in the reader. |
Card Selection | Establish a logical communication channel with a card and, if required, perform additional APDU exchanges with it. |
Card Commands | Perform APDU exchanges with the selected card. |
Following the reception of this message, the terminal will send to the server a message of type “Response” containing the response of the operation.
The following UML class diagram illustrates the structure of this object and may help to implement it in the development language of the target terminal.
service
property determines the service to be performed.MessageDto
is contained in a single-element array!Reader Type
This service allows the server to know if the reader is in contact or contactless mode.
There are no parameters for this service.
The terminal must then send the response to the server in a message of type “Reader Type (Response)”.
MessageDto
is contained in a single-element array!MessageDto
apiLevel | Number Constant value: 2 |
sessionId | String The current transaction identifier as provided by the initial “Execute Remote Service” message. |
action | String Constant value: “CMD” |
clientNodeId | String The terminal identifier as provided by the initial “Execute Remote Service” message. |
serverNodeId | String The server identifier. |
localReaderName | String The identifier of the local reader as provided by the initial “Execute Remote Service” message. |
remoteReaderName | String The identifier of the virtual remote reader linked to the local reader. |
body | String A JSON string containing a IsContactlessCmdBody JSON object. |
IsContactlessCmdBody
coreApiLevel | Number Constant value: 2 |
service | String Constant value: “IS_CONTACTLESS” |
Example
[
{
"apiLevel": 2,
"sessionId": "b1b8ed38-bae6-4b2e-a747-67d233652ea9",
"action": "CMD",
"clientNodeId": "ca21fd3c-a055-4be5-aad1-c61af3528371",
"serverNodeId": "4132f1ef-4386-49b0-acb6-cc16035c107a",
"localReaderName": "READER_1",
"remoteReaderName": "a65f4920-7e96-4082-986a-b58d85978c07",
"body": "{\"coreApiLevel\":2,\"service\":\"IS_CONTACTLESS\"}"
}
]
Card Presence
This service allows the server to know if a card is inserted in the reader.
There are no parameters for this service.
The terminal must then send the response to the server in a message of type “Card Presence (Response)”.
MessageDto
is contained in a single-element array!MessageDto
apiLevel | Number Constant value: 2 |
sessionId | String The current transaction identifier as provided by the initial “Execute Remote Service” message. |
action | String Constant value: “CMD” |
clientNodeId | String The terminal identifier as provided by the initial “Execute Remote Service” message. |
serverNodeId | String The server identifier. |
localReaderName | String The identifier of the local reader as provided by the initial “Execute Remote Service” message. |
remoteReaderName | String The identifier of the virtual remote reader linked to the local reader. |
body | String A JSON string containing a IsCardPresentCmdBody JSON object. |
IsCardPresentCmdBody
coreApiLevel | Number Constant value: 2 |
service | String Constant value: “IS_CARD_PRESENT” |
Example
[
{
"apiLevel": 2,
"sessionId": "b1b8ed38-bae6-4b2e-a747-67d233652ea9",
"action": "CMD",
"clientNodeId": "ca21fd3c-a055-4be5-aad1-c61af3528371",
"serverNodeId": "4132f1ef-4386-49b0-acb6-cc16035c107a",
"localReaderName": "READER_1",
"remoteReaderName": "a65f4920-7e96-4082-986a-b58d85978c07",
"body": "{\"coreApiLevel\":2,\"service\":\"IS_CARD_PRESENT\"}"
}
]
Card Selection
The primary objective of this service is to establish a logical communication channel with a card.
To enable processing of different card profiles, it offers the creation of selection scenarios with integrated selection cases. The scenario is provided by the server after a card is detected, and it involves checking whether the card is compatible with at least one of the selection cases. The selection cases are processed successively, in the order in which they are defined.
There are several options for executing the scenario:
- the process stops at the first selection case where the card matches, or all scenarios are systematically processed.
- the physical channel can be kept open or closed at the end of each selection case.
A card selection case incorporates various independent filters that can be applied individually or in combination to determine if a detected card is suitable for performing a transaction. While some cards can be selected based on communication protocol or response data from the power-on operation, most of the cards require a selection through Application Identifier (AID) using the ISO7816-4 “Select Application” APDU command.
The structure outlined below allows for defining selection scenarios that combine these three types of filters:
- based on the communication protocol,
- based on the response data from the power on stage,
- based on the Application Identifier (AID).
When filtering by AID, the “Select Application” APDU command is sent to the card in accordance with the ISO7816-4
standard.
Additional parameters, also defined by the standard, can be set to specify the type of operation (FileOccurrence
)
and the type of output (FileControlInformation
).
Each filter is optional, and if none are defined, the selection is considered successful as soon as the card is detected. However, when a filter is specified, it becomes a prerequisite for the card selection.
In addition to card selection, a selection scenario can include a list of APDUs that are to be transmitted to the card as soon as it becomes “selected”.
The algorithm to be implemented by the terminal to process this service consists in iterating on the selection cases of the scenario.
For each selection case, the terminal must determine which type of filter to apply and apply it: protocol, power-on data, AID.
If all the defined filters are satisfied, the terminal must send any additional APDUs.
The terminal must then send the response to the server in a message of type “Card Selection (Response)”.
MessageDto
is contained in a single-element array!MessageDto
apiLevel | Number Constant value: 2 |
sessionId | String The current transaction identifier as provided by the initial “Execute Remote Service” message. |
action | String Constant value: “CMD” |
clientNodeId | String The terminal identifier as provided by the initial “Execute Remote Service” message. |
serverNodeId | String The server identifier. |
localReaderName | String The identifier of the local reader as provided by the initial “Execute Remote Service” message. |
remoteReaderName | String The identifier of the virtual remote reader linked to the local reader. |
body | String A JSON string containing a TransmitCardSelectionRequestsCmdBody JSON object. |
TransmitCardSelectionRequestsCmdBody
coreApiLevel | Number Constant value: 2 |
service | String Constant value: “TRANSMIT_CARD_SELECTION_REQUESTS” |
parameters | TransmitCardSelectionRequestsParameters The card selection parameters. |
TransmitCardSelectionRequestsParameters
multiSelectionProcessing | String Can have one of the following values: - “FIRST_MATCH”: the selection process stops as soon as a selection case is successful. - “PROCESS_ALL”: the selection process performs all the selection cases provided (the logical channel is closed at the end of the selection case). |
channelControl | String Can have one of the following values: - “KEEP_OPEN”: leaves the physical channel open. - “CLOSE_AFTER”: terminates communication with the card. |
cardSelectors | CardSelector [ ] A non-empty array. |
cardSelectionRequests | CardSelectionRequest [ ] A non-empty array containing the same number of elements as cardSelectors . |
CardSelector
logicalProtocolName | String (optional) An optional “logical” name of the targeted card protocol. |
powerOnDataRegex | String (optional) An optional regex to use to filter the power-on data. |
aid | String (optional) An optional Application Identifier (AID) as an hexadecimal string to be sent with ISO7816-4 “Select Application”. |
fileOccurrence | String Can have one of the following values: "FIRST", “LAST”, “NEXT” or “PREVIOUS” according to the ISO7816-4 standard (only relevant when AID is set). |
fileControlInformation | String Can have one of the following values: "FCI", “FCP”, “FMD” or “NO_RESPONSE” according to the ISO7816-4 standard (only relevant when AID is set). |
CardSelectionRequest
cardRequest | CardRequest (optional) An optional object containing a list of APDU requests to be sent after a successful card selection. |
successfulSelectionStatusWords | String [ ] A non-empty array of 2-byte hexadecimal strings containing the status word of the “Select Application” APDU command to be considered successful (only relevant when AID is set). |
CardRequest
apduRequests | ApduRequest [ ] A non-empty array of APDU requests. |
stopOnUnsuccessfulStatusWord | Boolean Set to true if the transmission of the APDUs should be interrupted as soon as the status word of a response does not belong to the associated list of successful status words, false otherwise. |
ApduRequest
apdu | String An hexadecimal string containing the APDU to transmit to the card. |
successfulStatusWords | String [ ] A non-empty array of 2-byte hexadecimal strings containing the status word to be considered successful. |
info | String (optional) An optional textual information about the command. |
Example
[
{
"apiLevel":2,
"sessionId":"5bf1ca9a-2de9-4f16-b170-5de168560179",
"action":"CMD",
"clientNodeId":"824f32f1-ccb0-447c-a103-618152eb49ba",
"serverNodeId":"fbf011a4-d0e2-4f3f-85c3-2ccd5be01919",
"localReaderName":"stubReader",
"remoteReaderName":"852f5841-0b5c-4922-a77a-b103cb5aac3f",
"body":"{\"coreApiLevel\":2,\"service\":\"TRANSMIT_CARD_SELECTION_REQUESTS\",\"parameters\":{\"multiSelectionProcessing\":\"FIRST_MATCH\",\"channelControl\":\"KEEP_OPEN\",\"cardSelectors\":[{\"fileOccurrence\":\"FIRST\",\"fileControlInformation\":\"FCI\"}],\"cardSelectionRequests\":[{\"successfulSelectionStatusWords\":[\"9000\"]}]}}"
}
]
Card Commands
The role of this service is to perform APDU exchanges with the card.
The terminal must iterate over the list of APDUs present in the card request and proceeds to close the physical channel if requested.
The response must be sent to the server in a message of type “Card Commands (Response)”.
MessageDto
is contained in a single-element array!MessageDto
apiLevel | Number Constant value: 2 |
sessionId | String The current transaction identifier as provided by the initial “Execute Remote Service” message. |
action | String Constant value: “CMD” |
clientNodeId | String The terminal identifier as provided by the initial “Execute Remote Service” message. |
serverNodeId | String The server identifier. |
localReaderName | String The identifier of the local reader as provided by the initial “Execute Remote Service” message. |
remoteReaderName | String The identifier of the virtual remote reader linked to the local reader. |
body | String A JSON string containing a TransmitCardRequestCmdBody JSON object. |
TransmitCardRequestCmdBody
coreApiLevel | Number Constant value: 2 |
service | String Constant value: “TRANSMIT_CARD_REQUEST” |
parameters | TransmitCardRequestParameters The card request parameters. |
TransmitCardRequestParameters
cardRequest | CardRequest An object containing the list of APDU requests to be sent. |
channelControl | String Can have one of the following values: - “KEEP_OPEN”: leaves the physical channel open. - “CLOSE_AFTER”: terminates communication with the card. |
CardRequest
apduRequests | ApduRequest [ ] A non-empty array of APDU requests. |
stopOnUnsuccessfulStatusWord | Boolean Set to true if the transmission of the APDUs should be interrupted as soon as the status word of a response does not belong to the associated list of successful status words, false otherwise. |
ApduRequest
apdu | String An hexadecimal string containing the APDU to transmit to the card. |
successfulStatusWords | String [ ] A non-empty array of 2-byte hexadecimal strings containing the status word to be considered successful. |
info | String (optional) An optional textual information about the command. |
Example
[
{
"apiLevel": 2,
"sessionId": "b1b8ed38-bae6-4b2e-a747-67d233652ea9",
"action": "CMD",
"clientNodeId": "ca21fd3c-a055-4be5-aad1-c61af3528371",
"serverNodeId": "4132f1ef-4386-49b0-acb6-cc16035c107a",
"localReaderName": "READER_1",
"remoteReaderName": "a65f4920-7e96-4082-986a-b58d85978c07",
"body": "{\"coreApiLevel\":2,\"service\":\"TRANSMIT_CARD_REQUEST\",\"parameters\":{\"cardRequest\":{\"apduRequests\":[{\"apdu\":\"00B2014400\",\"successfulStatusWords\":[\"9000\"],\"info\":\"Read Records - SFI: 8h, REC: 1, READMODE: ONE_RECORD, EXPECTEDLENGTH: 0\"}],\"stopOnUnsuccessfulStatusWord\":true},\"channelControl\":\"CLOSE_AFTER\"}}"
}
]
Response
This message, sent by the terminal to the server, is intended to transmit to the server the result of the specific service previously performed on the card or the terminal’s reader.
Following the transmission of this message, the server will return a message of type “Command”, containing the next action to be performed, or of type “End Remote Service” to terminate the transaction.
The following UML class diagram illustrates the structure of this object and may help to implement it in the development language of the target terminal.
Reader Type
This message, sent by the terminal to the server in response to “Reader Type (Command)”, is intended to indicate to the server if the reader is contactless.
MessageDto
apiLevel | Number Constant value: 2 |
sessionId | String The current transaction identifier as provided by the initial “Execute Remote Service” message. |
action | String Constant value: “RESP” |
clientNodeId | String The terminal identifier as provided by the initial “Execute Remote Service” message. |
serverNodeId | String The server identifier as provided by the last “Command” message. |
localReaderName | String The identifier of the local reader as provided by the initial “Execute Remote Service” message. |
remoteReaderName | String The identifier of the virtual remote reader linked to the local reader as provided by the last “Command” message. |
body | String A JSON string containing a IsContactlessRespBody JSON object. |
IsContactlessRespBody
coreApiLevel | Number Constant value: 2 |
service | String Constant value: “IS_CONTACTLESS” |
result | Boolean (optional) Set to true if the reader is contactless, false otherwise (absent in case of error). |
error | Error (optional) The error description (absent in case of success). |
Error
code | String Free value. |
message | String The error description. |
Example
{
"apiLevel": 2,
"sessionId": "b1b8ed38-bae6-4b2e-a747-67d233652ea9",
"action": "RESP",
"clientNodeId": "ca21fd3c-a055-4be5-aad1-c61af3528371",
"serverNodeId": "4132f1ef-4386-49b0-acb6-cc16035c107a",
"localReaderName": "READER_1",
"remoteReaderName": "a65f4920-7e96-4082-986a-b58d85978c07",
"body": "{\"coreApiLevel\":2,\"service\":\"IS_CONTACTLESS\",\"result\":true}"
}
Card Presence
This message, sent by the terminal to the server in response to “Card Presence (Command)”, is intended to indicate to the server if a card is present.
MessageDto
apiLevel | Number Constant value: 2 |
sessionId | String The current transaction identifier as provided by the initial “Execute Remote Service” message. |
action | String The value is “RESP”. |
clientNodeId | String The terminal identifier as provided by the initial “Execute Remote Service” message. |
serverNodeId | String The server identifier as provided by the last “Command” message. |
localReaderName | String The identifier of the local reader as provided by the initial “Execute Remote Service” message. |
remoteReaderName | String The identifier of the virtual remote reader linked to the local reader as provided by the last “Command” message. |
body | String A JSON string containing a IsCardPresentRespBody JSON object. |
IsCardPresentRespBody
coreApiLevel | Number Constant value: 2 |
service | String Constant value: “IS_CARD_PRESENT” |
result | Boolean Set to true if a card is present, false otherwise (absent in case of error). |
error | Error (optional) The error description (absent in case of success). |
Error
code | String Can have one of the following values: - “READER_COMMUNICATION_ERROR”: if the issue is related to the reader communication link, - “CARD_COMMUNICATION_ERROR”: if the issue is related to the card communication link. |
message | String The error description. |
Example
{
"apiLevel": 2,
"sessionId": "b1b8ed38-bae6-4b2e-a747-67d233652ea9",
"action": "RESP",
"clientNodeId": "ca21fd3c-a055-4be5-aad1-c61af3528371",
"serverNodeId": "4132f1ef-4386-49b0-acb6-cc16035c107a",
"localReaderName": "READER_1",
"remoteReaderName": "a65f4920-7e96-4082-986a-b58d85978c07",
"body": "{\"coreApiLevel\":2,\"service\":\"IS_CARD_PRESENT\",\"result\":true}"
}
Card Selection
This message, sent by the terminal to the server in response to “Card Selection (Command)”, is intended to transmit to the server the result of the execution of the selection scenario.
MessageDto
apiLevel | Number Constant value: 2 |
sessionId | String The current transaction identifier as provided by the initial “Execute Remote Service” message. |
action | String Constant value: “RESP” |
clientNodeId | String The terminal identifier as provided by the initial “Execute Remote Service” message. |
serverNodeId | String The server identifier as provided by the last “Command” message. |
localReaderName | String The identifier of the local reader as provided by the initial “Execute Remote Service” message. |
remoteReaderName | String The identifier of the virtual remote reader linked to the local reader as provided by the last “Command” message. |
body | String A JSON string containing a TransmitCardSelectionRequestsRespBody JSON object. |
TransmitCardSelectionRequestsRespBody
coreApiLevel | Number Constant value: 2 |
service | String Constant value: “TRANSMIT_CARD_SELECTION_REQUESTS” |
result | CardSelectionResponse [ ] (optional) A non-empty list containing at most as many responses as there are selection cases (absent in case of error). |
error | Error (optional) The error description (absent in case of success). |
CardSelectionResponse
hasMatched | Boolean Set to true if the associated selection case has matched, false otherwise. |
powerOnData | String (optional) Data from the initialization phase of the communication with the card. E.g. the Answer To Reset (ATR) in the case of a contact card or any other string informing about the low level communication. This string can be used for filtering by power-on data defined in the command (absent if the protocol filter failed). |
selectApplicationResponse | ApduResponse (optional) Data received in response to the ISO7816-4 “Select Application” command (absent if no AID filtering). |
cardResponse | CardResponse (optional) Data received in response to additional commands (absent if no additional commands were provided). |
CardResponse
isLogicalChannelOpen | Boolean Set to true if the logical channel is left open, false otherwise. |
apduResponses | ApduResponse [ ] A list containing the APDU responses for each request in the command. |
ApduResponse
apdu | String An hexadecimal string containing the APDU received from the card (including the status word). |
statusWord | String A 2-byte hexadecimal string containing the status word of the received APDU. |
Error
code | String Can have one of the following values: - “READER_COMMUNICATION_ERROR”: if the issue is related to the reader communication link, - “CARD_COMMUNICATION_ERROR”: if the issue is related to the card communication link, - “CARD_COMMAND_ERROR”: if the card returned an unexpected status word. |
message | String The error description. |
Example
{
"apiLevel": 2,
"sessionId": "b1b8ed38-bae6-4b2e-a747-67d233652ea9",
"action": "RESP",
"clientNodeId": "ca21fd3c-a055-4be5-aad1-c61af3528371",
"serverNodeId": "4132f1ef-4386-49b0-acb6-cc16035c107a",
"localReaderName": "READER_1",
"remoteReaderName": "a65f4920-7e96-4082-986a-b58d85978c07",
"body": "{\"coreApiLevel\":2,\"service\":\"TRANSMIT_CARD_SELECTION_REQUESTS\",\"result\":[{\"hasMatched\":true,\"powerOnData\":\"3B8880010000000000718100F9\",\"selectApplicationResponse\":{\"apdu\":\"6F238409315449432E49434131A516BF0C13C708000000001122334453070A3C23121410019000\",\"statusWord\":\"9000\"},\"cardResponse\":{\"apduResponses\":[{\"apdu\":\"24B92848080000131A50001200000000000000000000000000000000009000\",\"statusWord\":\"9000\"}],\"isLogicalChannelOpen\":true}}]}"
}
Card Commands
This message, sent by the terminal to the server in response to “Card Commands (Command)”, is intended to transmit to the server the result of the execution of a card request.
MessageDto
apiLevel | Number Constant value: 2 |
sessionId | String The current transaction identifier as provided by the initial “Execute Remote Service” message. |
action | String Constant value: “RESP” |
clientNodeId | String The terminal identifier as provided by the initial “Execute Remote Service” message. |
serverNodeId | String The server identifier as provided by the last “Command” message. |
localReaderName | String The identifier of the local reader as provided by the initial “Execute Remote Service” message. |
remoteReaderName | String The identifier of the virtual remote reader linked to the local reader as provided by the last “Command” message. |
body | String A JSON string containing a TransmitCardRequestRespBody JSON object. |
TransmitCardRequestRespBody
coreApiLevel | Number Constant value: 2 |
service | String Constant value: “TRANSMIT_CARD_REQUEST” |
result | CardResponse (optional) Data received in response to the card request (absent in case of error). |
error | Error (optional) The error description (absent in case of success). |
CardResponse
isLogicalChannelOpen | Boolean Set to true if the logical channel is left open, false otherwise. |
apduResponses | ApduResponse [ ] A list containing the APDU responses for each request in the command. |
ApduResponse
apdu | String An hexadecimal string containing the APDU received from the card (including the status word). |
statusWord | String A 2-byte hexadecimal string containing the status word of the received APDU. |
Error
code | String Can have one of the following values: - “READER_COMMUNICATION_ERROR”: if the issue is related to the reader communication link, - “CARD_COMMUNICATION_ERROR”: if the issue is related to the card communication link, - “CARD_COMMAND_ERROR”: if the card returned an unexpected status word. |
message | String The error description. |
Example
{
"apiLevel": 2,
"sessionId": "b1b8ed38-bae6-4b2e-a747-67d233652ea9",
"action": "RESP",
"clientNodeId": "ca21fd3c-a055-4be5-aad1-c61af3528371",
"serverNodeId": "4132f1ef-4386-49b0-acb6-cc16035c107a",
"localReaderName": "READER_1",
"remoteReaderName": "a65f4920-7e96-4082-986a-b58d85978c07",
"body": "{\"coreApiLevel\":2,\"service\":\"TRANSMIT_CARD_REQUEST\",\"result\":{\"apduResponses\":[{\"apdu\":\"00112233445566778899AABBCCDDEEFF00112233445566778899AABBCC9000\",\"statusWord\":\"9000\"}],\"isLogicalChannelOpen\":true}}"
}
End Remote Service
The purpose of this message, received from the server, is to inform the terminal that the transaction has been completed and, if necessary, to transmit the result. No follow-up is expected from the server.
The following UML class diagram illustrates the structure of this object and may help to implement it in the development language of the target terminal.
MessageDto
is contained in a single-element array!MessageDto
apiLevel | Number Constant value: 2 |
sessionId | String The current transaction identifier as provided by the initial “Execute Remote Service” message. |
action | String Constant value: “END_REMOTE_SERVICE” |
clientNodeId | String The terminal identifier as provided by the initial “Execute Remote Service” message. |
serverNodeId | String The server identifier. |
localReaderName | String (n/a) Null or absent. |
remoteReaderName | String The identifier of the virtual remote reader linked to the local reader. |
body | String A JSON string containing a EndRemoteServiceBody JSON object. |
EndRemoteServiceBody
coreApiLevel | Number Constant value: 2 |
outputData | Object (optional) An optional object containing additional data provided by the remote business service. Its content is a convention between the client and the server. |
Example
[
{
"apiLevel": 2,
"sessionId": "b1b8ed38-bae6-4b2e-a747-67d233652ea9",
"action": "END_REMOTE_SERVICE",
"clientNodeId": "ca21fd3c-a055-4be5-aad1-c61af3528371",
"serverNodeId": "4132f1ef-4386-49b0-acb6-cc16035c107a",
"remoteReaderName": "a65f4920-7e96-4082-986a-b58d85978c07",
"body": "{\"coreApiLevel\":2,\"outputData\":{\"isSuccessful\":true,\"userId\":\"test\"}}"
}
]