Wirelane API (2.0)

Download OpenAPI specification:Download

Basic information

To use this API, a client_id and client_secret is needed. Please contact our support to receive one for your app.

There are two kinds of endpoints: endpoints that are accessible without having an user account on the Wirelane platform, and endpoints that are accessible without. Both need a client_id and client_secret.

Authenticated endpoints (OAuth2Password)

Retrieving a JWT access token on staging:

POST https://oauth-staging.emobilitycloud.com/token
Content-Type: application/x-www-form-urlencoded
Accept: application/json

grant_type=password&client_id=...&client_secret=...&username=...&password=...

Retrieving a JWT access token on production:

POST https://oauth.emobilitycloud.com/token
Content-Type: application/x-www-form-urlencoded
Accept: application/json

grant_type=password&client_id=...&client_secret=...&username=...&password=...

From the returned JSON, take the value of access_token and use it in the API requests.

Unauthenticated endpoints (OAuth2ClientCredential)

Retrieving a JWT access token on staging:

POST https://oauth-staging.emobilitycloud.com/token
Content-Type: application/x-www-form-urlencoded
Accept: application/json

grant_type=client_credentials&client_id=...&client_secret=...&scope=account

Retrieving a JWT access token on production:

POST https://oauth.emobilitycloud.com/token
Content-Type: application/x-www-form-urlencoded
Accept: application/json

grant_type=client_credentials&client_id=...&client_secret=...&scope=account

From the returned JSON, take the value of access_token and use it in the API requests.

Using the access token

The access_token property from the authentication request needs to be provided as authorization header to the requests:

GET https://api.wirelane.com/apis/emc/organizations/id/dewln/points?page=1&page_size=50
Accept: application/json
Authorization: Bearer $access_token

Host names for the endpoints

Host names for the API

  • Staging: api-staging.wirelane.com
  • Production: api.wirelane.com

Authentication

OAuth2Password

Security Scheme Type OAuth2
password OAuth Flow
Token URL: https://oauth-staging.emobilitycloud.com/token
Scopes:
  • account_admin -

    Account Admin

OAuth2ClientCredential

Security Scheme Type OAuth2
clientCredentials OAuth Flow
Token URL: https://oauth-staging.emobilitycloud.com/token
Scopes:
  • account -

    Account function

Organizations Members

Get members of an organization

Get an ordered and paginated list of members of an organization. Search query can be used to filter for members by role, status, email or creation user.

Authorizations:
OAuth2Password (account_admin)
path Parameters
organizationId
required
string^[a-zA-Z0-9-_]+$
Example: DEMOTENANT

Organization ID

query Parameters
member_status
Array of strings
Items Enum: "pending" "active" "revoked" "terminated"
order_by
string
Enum: "email" "status"

Name for sort

order_direction
string
Enum: "asc" "desc" ""

Key for order direction

page
integer
Default: 1

Number of current page

page_size
integer [ 1 .. 1000000 ]
Default: 50

Number of items per page

search
string

Search term

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Get member by account ID

Authorizations:
OAuth2Password (account_admin)
path Parameters
accountId
required
string^[a-zA-Z0-9-_]+$
Example: DEWLN-0123456789

Account ID

organizationId
required
string^[a-zA-Z0-9-_]+$
Example: DEMOTENANT

Organization ID

Responses

Response samples

Content type
application/json
{
  • "id": "string",
  • "account": {
    },
  • "email": "user@example.com",
  • "status": "pending"
}

Organizations Members Payments

Get payment methods of the member

Authorizations:
OAuth2Password (account_admin)
path Parameters
accountId
required
string^[a-zA-Z0-9-_]+$
Example: DEWLN-0123456789

Account ID

organizationId
required
string^[a-zA-Z0-9-_]+$
Example: DEMOTENANT

Organization ID

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Organizations Members Subscriptions

Get member subscription

Get subscriptions for organization members

Authorizations:
OAuth2Password (account_admin)
path Parameters
accountId
required
string^[a-zA-Z0-9-_]+$
Example: DEWLN-0123456789

Account ID

organizationId
required
string^[a-zA-Z0-9-_]+$
Example: DEMOTENANT

Organization ID

Responses

Response samples

Content type
application/json
{
  • "id": "3073b46e-1e17-4d9d-8485-1ebd9424f6b7",
  • "upcoming_subscription": {
    },
  • "current_period": {
    },
  • "plan_key": "WIRELANE-ABO-ANNUEL-3",
  • "begin": "2015-11-25T10:43:02+0100",
  • "end": "2015-11-25T10:43:02+0100",
  • "account_id": "ABCD1234"
}

Organizations Charge Points

Get organization charge points

Finding charging points for the account.

Authorizations:
OAuth2Password (account_admin)
path Parameters
organizationId
required
string^[a-zA-Z0-9-_]+$
Example: DEMOTENANT

Organization ID

query Parameters
auth_type
Array of strings
Items Enum: "card" "remote" "direct" ""

The charging station authorization type.

  • card
  • remote
  • direct
charging_station_id
Array of strings

Filter by list of charging station id's

charging_type
Array of strings
Items Enum: "AC" "DC" ""

The charging type.

  • AC
  • DC
distance
string^[0-9]*$

Search distance in meters

evseid
Array of strings

Filter by list of evseids

infrastructure_only
string^[0-1]{1}$

To exchange only infrastructure specific data

lat
string^[-+]?[0-9]*.?[0-9]+$

Latitude

lon
string^[-+]?[0-9]*.?[0-9]+$

Longitude

max_power
string^[-+]?[0-9]*.?[0-9]+$

The charging speed. Greater than 0

north_east_lat
string^[-+]?[0-9]*.?[0-9]+$

Latitude

north_east_lon
string^[-+]?[0-9]*.?[0-9]+$

Longitude

not_in_point_groups
Array of strings
order_by
string
Enum: "evseid" "status" "latitude" "longitude" "power" "voltage" "chargingType" "plugType" "country" "city" "zipCode" "creationDate" "updateDate" "distance"

Name for sort

order_direction
string
Enum: "asc" "desc" ""

Key for order direction

owner_id
Array of strings

Filter by list of owner_id

page
integer
Default: 1

Number of current page

page_size
integer [ 1 .. 1000000 ]
Default: 50

Number of items per page

plug_types
Array of strings
Items Enum: "TYPE_1" "TYPE_1_ATCH" "TYPE_2" "TYPE_2_ATCH" "TYPE_3" "TYPE_3_ATCH" "CHADEMO" "CCS" "SCHUKO" "UNKNOWN" ""

The plug types.

  • TYPE_1
  • TYPE_1_ATCH: With cable attached
  • TYPE_2
  • TYPE_2_ATCH: With cable attached
  • TYPE_3
  • TYPE_3_ATCH: With cable attached
  • CHADEMO
  • CCS
  • SCHUKO
  • UNKNOWN
point_groups
Array of strings

Search for specific point groups

reservable
string^[0-1]{1}$

To exchange only reservable points

search
string

Search term

sort_lat
string^[-+]?[0-9]*.?[0-9]+$

Latitude for sortable

sort_lon
string^[-+]?[0-9]*.?[0-9]+$

Longitude for sortable

south_west_lat
string^[-+]?[0-9]*.?[0-9]+$

Latitude

south_west_lon
string^[-+]?[0-9]*.?[0-9]+$

Longitude

status
Array of strings

Status of the points. If one point in the station hits the requested status the entire station is returned.

  • FREE: Point is free.
  • IN_USE: Point is used by a card (might also be reserved).
  • UNAVAILABLE: Point is unavailable right now. Might not be installed or broken.
  • UNKNOWN: The point status is unknonwn.
  • FAULTED: Point is faulted or temporary faulted.
  • RESERVED: The point is reserved.
  • CLOSED: The point status is closed (the point is not in use anymore).

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Create organization charge point

Create a charging point for the provider of the organization.

Authorizations:
OAuth2Password (account_admin)
path Parameters
organizationId
required
string^[a-zA-Z0-9-_]+$
Example: DEMOTENANT

Organization ID

Request Body schema: application/json

Create a charging point

charge_point_id
required
string

The technical ID of the charge point connector. Shown to the user, and could be printed on the label (label code)

authentication_types
Array of strings
Items Enum: "card" "remote" "nfc_terminal" "direct"

Authentication method for the charging point

object

Availability of charging point

Array of objects (ChargingPointGroup)
charging_station_id
string

An optional user-defined ID to group different charging points into one logical station. Used for grouping in some apps.

charging_type
string
Enum: "AC" "DC"

Electricity type (AC or DC)

city
string
country
string

In ISO 3166-1 alpha-2

cpo
string

Name of the Charge Point Operator

current
integer

Current in Ampere

display_id
string
distance
number <float>

Is returned when searching for charging points and providing a center

emp
string

Name of the Emobility provider. [Deprecated]

evseid
string

The EVSE ID used for roaming.

house_number
string
latitude
number <float>

Latitude of the charging point (WGS 84)

longitude
number <float>

Longitude of the charging point (WGS 84)

model
string

Name of the charge point model

opening_hours
string

@deprecated - use availability instead. Label describing charging point availability.

owner
string

The owner of the charging station.

payment_url
string
plug_types
Array of strings
Items Enum: "TYPE_1" "TYPE_1_ATCH" "TYPE_2" "TYPE_2_ATCH" "TYPE_3" "TYPE_3_ATCH" "CHADEMO" "CCS" "SCHUKO" "UNKNOWN"

Up to four types of plugs.

power
number <double>

Power in kWh

reservable
boolean

If this charging point supports reservations

serial_number
string

The serial number

service_hotline
string

The telephone number of the service hotline

status
string
Enum: "FREE" "IN_USE" "UNAVAILABLE" "UNKNOWN" "FAULTED" "RESERVED" "CLOSED"

Status of the points. If one point in the station hits the requested status the entire station is returned. (Comma Separated List)

  • FREE : Point is free.
  • IN_USE : Point is used by a card (might also be reserved).
  • UNAVAILABLE : Point is unavailable right now. Might not be installed or broken.
  • UNKNOWN : The point status is unknonwn.
  • FAULTED : Point is faulted or temporary faulted.
  • RESERVED : The point is reserved.
  • CLOSED : The point status is closed (the point is not in use anymore).
street
string
timezone
string

Timezone of charging point.

voltage
integer

Voltage in V

zip_code
string

Responses

Request samples

Content type
application/json
{
  • "charging_station_id": "98fd4f3a554f33c12eca9b5e2e4b369a",
  • "charge_point_id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "evseid": "DESGDE000801",
  • "display_id": "RED_LEFT",
  • "owner": "WIRELANE-2500781",
  • "emp": "desgd",
  • "cpo": "desgd",
  • "plug_types": [
    ],
  • "charging_type": "AC",
  • "model": "string",
  • "serial_number": "string",
  • "current": 0,
  • "power": 22,
  • "voltage": 230,
  • "reservable": true,
  • "authentication_types": [
    ],
  • "status": "FREE",
  • "country": "DE",
  • "city": "Schwäbisch Gmünd",
  • "zip_code": "73525",
  • "street": "Honiggasse",
  • "house_number": "21",
  • "opening_hours": "Mo-Fr 09:00 - 20:00",
  • "availability": {
    },
  • "timezone": "Europe/Berlin",
  • "service_hotline": 800557788,
  • "longitude": 9.79944,
  • "latitude": 48.8026,
  • "distance": 1002.23,
  • "charging_group": [
    ]
}

Response samples

Content type
application/json
{
  • "id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "charging_point_id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "charging_station_id": "98fd4f3a554f33c12eca9b5e2e4b369a",
  • "charge_point_id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "evseid": "DESGDE000801",
  • "display_id": "RED_LEFT",
  • "owner": "WIRELANE-2500781",
  • "emp": "desgd",
  • "cpo": "desgd",
  • "plug_types": [
    ],
  • "charging_type": "AC",
  • "model": "string",
  • "serial_number": "string",
  • "current": 0,
  • "power": 22,
  • "voltage": 230,
  • "reservable": true,
  • "authentication_types": [
    ],
  • "status": "FREE",
  • "country": "DE",
  • "city": "Schwäbisch Gmünd",
  • "zip_code": "73525",
  • "street": "Honiggasse",
  • "house_number": "21",
  • "opening_hours": "Mo-Fr 09:00 - 20:00",
  • "availability": {
    },
  • "timezone": "Europe/Berlin",
  • "service_hotline": 800557788,
  • "longitude": 9.79944,
  • "latitude": 48.8026,
  • "distance": 1002.23,
  • "creation_date": "2019-08-24T14:15:22Z",
  • "update_date": "2019-08-24T14:15:22Z",
  • "charging_provider": "emc",
  • "charging_group": [
    ]
}

Get one point from organization

Get a single charging point by their charging point evseId

Authorizations:
OAuth2Password (account_admin)
path Parameters
organizationId
required
string^[a-zA-Z0-9-_]+$
Example: DEMOTENANT

Organization ID

pointId
required
string^[a-zA-Z0-9-_*]+$

The ID to search for. Note that not all characters indicated by the pattern are allowed for each type of ID; e.g., the asterisk is only allowed if an EVSE ID is provided.

pointTypeId
required
string^[a-zA-Z0-9-_]+$
Enum: "id" "evseid" "charging_point_id" "charge_point_id"

Sets which field of ChargingPoint the pointId parameters refers to:

  • id / charging_point_id: The internal ID of the EVSE
  • evseid: The Roaming EVSE ID
  • charge_point_id: The technical ID of the charge point connector. Shown to the user, and could be printed on the label (label code)

Responses

Response samples

Content type
application/json
{
  • "id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "charging_point_id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "charging_station_id": "98fd4f3a554f33c12eca9b5e2e4b369a",
  • "charge_point_id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "evseid": "DESGDE000801",
  • "display_id": "RED_LEFT",
  • "owner": "WIRELANE-2500781",
  • "emp": "desgd",
  • "cpo": "desgd",
  • "plug_types": [
    ],
  • "charging_type": "AC",
  • "model": "string",
  • "serial_number": "string",
  • "current": 0,
  • "power": 22,
  • "voltage": 230,
  • "reservable": true,
  • "authentication_types": [
    ],
  • "status": "FREE",
  • "country": "DE",
  • "city": "Schwäbisch Gmünd",
  • "zip_code": "73525",
  • "street": "Honiggasse",
  • "house_number": "21",
  • "opening_hours": "Mo-Fr 09:00 - 20:00",
  • "availability": {
    },
  • "timezone": "Europe/Berlin",
  • "service_hotline": 800557788,
  • "longitude": 9.79944,
  • "latitude": 48.8026,
  • "distance": 1002.23,
  • "creation_date": "2019-08-24T14:15:22Z",
  • "update_date": "2019-08-24T14:15:22Z",
  • "charging_provider": "emc",
  • "charging_group": [
    ]
}

Update organization charge point

Update a charging point for the provider of the organization.

Authorizations:
OAuth2Password (account_admin)
path Parameters
organizationId
required
string^[a-zA-Z0-9-_]+$
Example: DEMOTENANT

Organization ID

pointId
required
string^[a-zA-Z0-9-_*]+$

The ID to search for. Note that not all characters indicated by the pattern are allowed for each type of ID; e.g., the asterisk is only allowed if an EVSE ID is provided.

pointTypeId
required
string^[a-zA-Z0-9-_]+$
Enum: "id" "evseid" "charging_point_id" "charge_point_id"

Sets which field of ChargingPoint the pointId parameters refers to:

  • id / charging_point_id: The internal ID of the EVSE
  • evseid: The Roaming EVSE ID
  • charge_point_id: The technical ID of the charge point connector. Shown to the user, and could be printed on the label (label code)
Request Body schema: application/json

Create a charging point

charge_point_id
required
string

The technical ID of the charge point connector. Shown to the user, and could be printed on the label (label code)

authentication_types
Array of strings
Items Enum: "card" "remote" "nfc_terminal" "direct"

Authentication method for the charging point

object

Availability of charging point

Array of objects (ChargingPointGroup)
charging_station_id
string

An optional user-defined ID to group different charging points into one logical station. Used for grouping in some apps.

charging_type
string
Enum: "AC" "DC"

Electricity type (AC or DC)

city
string
country
string

In ISO 3166-1 alpha-2

cpo
string

Name of the Charge Point Operator

current
integer

Current in Ampere

display_id
string
distance
number <float>

Is returned when searching for charging points and providing a center

emp
string

Name of the Emobility provider. [Deprecated]

evseid
string

The EVSE ID used for roaming.

house_number
string
latitude
number <float>

Latitude of the charging point (WGS 84)

longitude
number <float>

Longitude of the charging point (WGS 84)

model
string

Name of the charge point model

opening_hours
string

@deprecated - use availability instead. Label describing charging point availability.

owner
string

The owner of the charging station.

payment_url
string
plug_types
Array of strings
Items Enum: "TYPE_1" "TYPE_1_ATCH" "TYPE_2" "TYPE_2_ATCH" "TYPE_3" "TYPE_3_ATCH" "CHADEMO" "CCS" "SCHUKO" "UNKNOWN"

Up to four types of plugs.

power
number <double>

Power in kWh

reservable
boolean

If this charging point supports reservations

serial_number
string

The serial number

service_hotline
string

The telephone number of the service hotline

status
string
Enum: "FREE" "IN_USE" "UNAVAILABLE" "UNKNOWN" "FAULTED" "RESERVED" "CLOSED"

Status of the points. If one point in the station hits the requested status the entire station is returned. (Comma Separated List)

  • FREE : Point is free.
  • IN_USE : Point is used by a card (might also be reserved).
  • UNAVAILABLE : Point is unavailable right now. Might not be installed or broken.
  • UNKNOWN : The point status is unknonwn.
  • FAULTED : Point is faulted or temporary faulted.
  • RESERVED : The point is reserved.
  • CLOSED : The point status is closed (the point is not in use anymore).
street
string
timezone
string

Timezone of charging point.

voltage
integer

Voltage in V

zip_code
string

Responses

Request samples

Content type
application/json
{
  • "charging_station_id": "98fd4f3a554f33c12eca9b5e2e4b369a",
  • "charge_point_id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "evseid": "DESGDE000801",
  • "display_id": "RED_LEFT",
  • "owner": "WIRELANE-2500781",
  • "emp": "desgd",
  • "cpo": "desgd",
  • "plug_types": [
    ],
  • "charging_type": "AC",
  • "model": "string",
  • "serial_number": "string",
  • "current": 0,
  • "power": 22,
  • "voltage": 230,
  • "reservable": true,
  • "authentication_types": [
    ],
  • "status": "FREE",
  • "country": "DE",
  • "city": "Schwäbisch Gmünd",
  • "zip_code": "73525",
  • "street": "Honiggasse",
  • "house_number": "21",
  • "opening_hours": "Mo-Fr 09:00 - 20:00",
  • "availability": {
    },
  • "timezone": "Europe/Berlin",
  • "service_hotline": 800557788,
  • "longitude": 9.79944,
  • "latitude": 48.8026,
  • "distance": 1002.23,
  • "charging_group": [
    ]
}

Response samples

Content type
application/json
{
  • "id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "charging_point_id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "charging_station_id": "98fd4f3a554f33c12eca9b5e2e4b369a",
  • "charge_point_id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "evseid": "DESGDE000801",
  • "display_id": "RED_LEFT",
  • "owner": "WIRELANE-2500781",
  • "emp": "desgd",
  • "cpo": "desgd",
  • "plug_types": [
    ],
  • "charging_type": "AC",
  • "model": "string",
  • "serial_number": "string",
  • "current": 0,
  • "power": 22,
  • "voltage": 230,
  • "reservable": true,
  • "authentication_types": [
    ],
  • "status": "FREE",
  • "country": "DE",
  • "city": "Schwäbisch Gmünd",
  • "zip_code": "73525",
  • "street": "Honiggasse",
  • "house_number": "21",
  • "opening_hours": "Mo-Fr 09:00 - 20:00",
  • "availability": {
    },
  • "timezone": "Europe/Berlin",
  • "service_hotline": 800557788,
  • "longitude": 9.79944,
  • "latitude": 48.8026,
  • "distance": 1002.23,
  • "creation_date": "2019-08-24T14:15:22Z",
  • "update_date": "2019-08-24T14:15:22Z",
  • "charging_provider": "emc",
  • "charging_group": [
    ]
}

Organizations Sessions

Get charging sessions of the organization

Get charging sessions conducted on the organization infrastructure

Authorizations:
OAuth2Password (account_admin)
path Parameters
organizationId
required
string^[a-zA-Z0-9-_]+$
Example: DEMOTENANT

Organization ID

query Parameters
charge_point_id
Array of strings

Filter by list of charge_point_id

charging_point_id
string^[a-zA-Z0-9-_*+]+$

Charging Point ID

date_picker_since
string <date-time> ^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{...

The date time to search from

date_picker_until
string <date-time> ^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{...

The date time to search to

order_by
string
Enum: "sessionId" "emp" "ownerId" "chargingStationId" "pointScmId" "evseid" "status" "sessionBegin" "sessionEnd" "tariff" "price" "kwh" "chargingSessionType" "chargingType" "plugType" "country" "city" "zipCode" "creationDate" "updateDate"

Name for sort

order_direction
string
Enum: "asc" "desc" ""

Key for order direction

organization_type
Array of strings
Items Enum: "emp" "cpo" "owner" ""

Type of the organization

owner_id
Array of strings

Filter by list of owner_id

page
integer
Default: 1

Number of current page

page_size
integer [ 1 .. 1000000 ]
Default: 50

Number of items per page

search
string

Search term

status
Array of strings

The charging session status to search for:

  • initial
  • authorization_pending
  • start_accepted
  • start_pending
  • started
  • stop_accepted
  • stop_pending
  • stopped
  • closed
  • canceled
  • error
  • error_consecutive_start
  • ''

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Get one session from organization

Get a single charging session conducted on the organization infrastructure

Authorizations:
OAuth2Password (account_admin)
path Parameters
organizationId
required
string^[a-zA-Z0-9-_]+$
Example: DEMOTENANT

Organization ID

sessionId
required
string^[a-zA-Z0-9-_]+$

The ID to search for

Responses

Response samples

Content type
application/json
{
  • "session_id": "string",
  • "cpo_session_id": "19eea288-1ee1-5aa9-b258-38fea1df55f3",
  • "customer_id": "WIRELANE-7900915",
  • "customer_email": "customer@example.com",
  • "customer_membership_owner": "wirelane",
  • "card_number": "WIRELANE123456",
  • "card_short_reference": "CarXYZ",
  • "language": "de",
  • "charging_station_id": "98fd4f3a554f33c12eca9b5e2e4b369a",
  • "charging_point_id": "00eb08a9b45c69a4f9f14982a0095e12",
  • "charge_point_id": "DESGDE000801-2",
  • "evseid": "DESGDE000801",
  • "owner": "WIRELANE-2500781",
  • "emp": "desgd",
  • "cpo": "eclearing",
  • "charging_provider": "wirelane",
  • "plug_type": "TYPE_2",
  • "charging_type": "AC",
  • "country": "DE",
  • "city": "Schwäbisch Gmünd",
  • "zip_code": 73525,
  • "street": "Honiggasse",
  • "house_number": 21,
  • "tariff": "LADEPAY_01",
  • "tariff_text": "string",
  • "price_model": "desgd_ladepay_01",
  • "price_model_text": "string",
  • "identification": "e6f252d6-30a0-5416-8533-126335a2ad2d",
  • "identification_type": "access_token",
  • "cpo_created": true,
  • "process_begin": "2017-10-15T16:44:45+0200",
  • "process_end": "2017-10-15T17:53:04+0200",
  • "transaction_begin": "2017-10-15T16:44:40+0200",
  • "transaction_end": "2017-10-15T17:52:59+0200",
  • "session_begin": "2017-10-15T16:44:40+0200",
  • "session_end": "2017-10-15T17:52:59+0200",
  • "transaction_duration": 68,
  • "session_duration": 68,
  • "kwh": 17.46,
  • "has_signed_value": true,
  • "price": 1.7,
  • "tax_rate": 0.19,
  • "currency": "EUR",
  • "charging_session_type": "comfort_charging",
  • "status": "closed",
  • "charging_state": "charging",
  • "creation_date": "2017-10-15T16:44:40+0200",
  • "update_date": "2017-10-15T17:53:04+0200",
  • "meter_start": 1541678196,
  • "meter_stop": 1541678196,
  • "error_code": "emc_timeout",
  • "error_message": "Manually closed because of time out"
}

Webhooks

Forwards an organization event to the defined callback. Webhook

Authorizations:
OAuth2Password (account_admin)

Responses