Transaction Status

Description.

This message is intended to inform the manufacturer of the transaction id and status.

TransactionStatusUpdate

Topic: josev/cs. Used to inform OEM the transaction state and its details.

type

object

properties

  • id

type

string

format

uuid

  • name

const

transaction_status

  • type

const

update

  • data

type

object

properties

  • transaction_id

type

string

  • evse_id

type

string

  • status

type

string

enum

started, in_progress, ended

  • id_token

type

string

  • token_type

enum

central, e_maid, ISO14443, ISO15693, key_code, local, mac_address, no_authorization

Example:

{
    "id": "dd7de5f8-64b0-4796-9fd6-a428de018e21",
    "name": "transaction_status",
    "type": "update",
    "data": {
        "status": "started", # in_progress | ended
        "transaction_id": "b130c6d1c8614cc3b7ba2058e29c6668",
        "evse_id": "DE*SEV*E123456789" # optional
        "id_token": "1234567890abcd", # optional
        "token_type": "ISO14443", # optional
    }
}