@ampeco/public-api-mcp 3.231.2 → 3.232.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/build-stats.json +9 -9
- package/dist/generated/endpoints.json +178 -14
- package/dist/generated/response-schemas.json +199 -4
- package/dist/generated/schemas.d.ts +94 -6
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +23 -2
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +24 -2
- package/package.json +1 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"totalEndpoints":
|
|
3
|
-
"originalSize":
|
|
4
|
-
"optimizedSize":
|
|
5
|
-
"reductionPercent": 71.
|
|
6
|
-
"buildDuration":
|
|
2
|
+
"totalEndpoints": 624,
|
|
3
|
+
"originalSize": 5492259,
|
|
4
|
+
"optimizedSize": 1545702,
|
|
5
|
+
"reductionPercent": 71.86,
|
|
6
|
+
"buildDuration": 1538,
|
|
7
7
|
"responseSchemas": {
|
|
8
|
-
"total":
|
|
9
|
-
"withSchemas":
|
|
10
|
-
"totalSchemaSize":
|
|
11
|
-
"averageSchemaSize":
|
|
8
|
+
"total": 624,
|
|
9
|
+
"withSchemas": 624,
|
|
10
|
+
"totalSchemaSize": 3144146,
|
|
11
|
+
"averageSchemaSize": 5039
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5016,6 +5016,142 @@
|
|
|
5016
5016
|
}
|
|
5017
5017
|
}
|
|
5018
5018
|
},
|
|
5019
|
+
{
|
|
5020
|
+
"path": "/public-api/actions/transaction/v1.0/{transaction}/create-pre-authorization",
|
|
5021
|
+
"method": "POST",
|
|
5022
|
+
"operationId": "transactionCreatePreAuthorization",
|
|
5023
|
+
"summary": "Transaction / Create Pre-Authorization",
|
|
5024
|
+
"description": "⚠️ Experimental endpoint — not yet a stable contract. This resource ships as experimental / beta. Creates a pre-authorisation — a hold, never an immediate charge — for a pending ad hoc transaction, using the payment processor set on the transaction (Worldline or Stripe), and returns what you need to collect the customer's payment. Amount and currency come from the transaction. Repeated calls return the existing pre-authorisation instead of creating a second one.",
|
|
5025
|
+
"tags": [
|
|
5026
|
+
"action / transaction"
|
|
5027
|
+
],
|
|
5028
|
+
"requestBody": {
|
|
5029
|
+
"required": true,
|
|
5030
|
+
"content": {
|
|
5031
|
+
"application/json": {
|
|
5032
|
+
"schema": {
|
|
5033
|
+
"oneOf": [
|
|
5034
|
+
{
|
|
5035
|
+
"type": "object",
|
|
5036
|
+
"properties": {
|
|
5037
|
+
"processor": {
|
|
5038
|
+
"type": "string",
|
|
5039
|
+
"enum": [
|
|
5040
|
+
"worldline"
|
|
5041
|
+
],
|
|
5042
|
+
"description": "The payment processor of the transaction."
|
|
5043
|
+
},
|
|
5044
|
+
"paymentProductId": {
|
|
5045
|
+
"type": "integer",
|
|
5046
|
+
"description": "Worldline payment product id selecting the payment rail (e.g. TWINT, Bancontact)."
|
|
5047
|
+
},
|
|
5048
|
+
"returnUrl": {
|
|
5049
|
+
"type": "string",
|
|
5050
|
+
"description": "URL Worldline redirects the customer back to after completing the hosted-checkout page."
|
|
5051
|
+
},
|
|
5052
|
+
"locale": {
|
|
5053
|
+
"type": "string",
|
|
5054
|
+
"description": "Locale used to render the Worldline hosted-checkout page (e.g. \"en\", \"de\")."
|
|
5055
|
+
},
|
|
5056
|
+
"paymentProductFilters": {
|
|
5057
|
+
"type": "object",
|
|
5058
|
+
"properties": {
|
|
5059
|
+
"restrictTo": {
|
|
5060
|
+
"type": "object",
|
|
5061
|
+
"properties": {
|
|
5062
|
+
"products": {
|
|
5063
|
+
"type": "array",
|
|
5064
|
+
"items": {
|
|
5065
|
+
"type": "integer"
|
|
5066
|
+
}
|
|
5067
|
+
},
|
|
5068
|
+
"groups": {
|
|
5069
|
+
"type": "array",
|
|
5070
|
+
"items": {
|
|
5071
|
+
"type": "string"
|
|
5072
|
+
}
|
|
5073
|
+
}
|
|
5074
|
+
},
|
|
5075
|
+
"description": "Restrict the hosted-checkout page to the listed products and groups."
|
|
5076
|
+
},
|
|
5077
|
+
"exclude": {
|
|
5078
|
+
"type": "object",
|
|
5079
|
+
"properties": {
|
|
5080
|
+
"products": {
|
|
5081
|
+
"type": "array",
|
|
5082
|
+
"items": {
|
|
5083
|
+
"type": "integer"
|
|
5084
|
+
}
|
|
5085
|
+
},
|
|
5086
|
+
"groups": {
|
|
5087
|
+
"type": "array",
|
|
5088
|
+
"items": {
|
|
5089
|
+
"type": "string"
|
|
5090
|
+
}
|
|
5091
|
+
}
|
|
5092
|
+
},
|
|
5093
|
+
"description": "Exclude the listed products and groups from the hosted-checkout page."
|
|
5094
|
+
}
|
|
5095
|
+
},
|
|
5096
|
+
"description": "Optional Worldline payment-product restrictions applied to the hosted-checkout page."
|
|
5097
|
+
}
|
|
5098
|
+
},
|
|
5099
|
+
"required": [
|
|
5100
|
+
"processor",
|
|
5101
|
+
"returnUrl"
|
|
5102
|
+
],
|
|
5103
|
+
"additionalProperties": false,
|
|
5104
|
+
"description": "Create-pre-authorization request for a transaction whose payment processor is Worldline. The pre-authorisation is created as a Worldline hosted-checkout page; the response returns the URL to redirect the customer to."
|
|
5105
|
+
},
|
|
5106
|
+
{
|
|
5107
|
+
"type": "object",
|
|
5108
|
+
"properties": {
|
|
5109
|
+
"processor": {
|
|
5110
|
+
"type": "string",
|
|
5111
|
+
"enum": [
|
|
5112
|
+
"stripe"
|
|
5113
|
+
],
|
|
5114
|
+
"description": "The payment processor of the transaction."
|
|
5115
|
+
}
|
|
5116
|
+
},
|
|
5117
|
+
"required": [
|
|
5118
|
+
"processor"
|
|
5119
|
+
],
|
|
5120
|
+
"additionalProperties": false,
|
|
5121
|
+
"description": "Create-pre-authorization request for a transaction whose payment processor is Stripe. No card details are sent in this request — the response returns a PaymentIntent client secret, and the customer's card is collected client-side (for example with Stripe Elements) to complete the pre-authorisation."
|
|
5122
|
+
}
|
|
5123
|
+
]
|
|
5124
|
+
}
|
|
5125
|
+
}
|
|
5126
|
+
}
|
|
5127
|
+
},
|
|
5128
|
+
"responses": {
|
|
5129
|
+
"200": {
|
|
5130
|
+
"description": "The pre-authorisation was created, or already existed from an earlier call — repeated calls return the same payment data. The response contains what you need to collect the customer's payment."
|
|
5131
|
+
},
|
|
5132
|
+
"401": {
|
|
5133
|
+
"description": "Access token is missing or invalid"
|
|
5134
|
+
},
|
|
5135
|
+
"403": {
|
|
5136
|
+
"description": "You do not have permission to perform the action"
|
|
5137
|
+
},
|
|
5138
|
+
"404": {
|
|
5139
|
+
"description": "The record is not found"
|
|
5140
|
+
},
|
|
5141
|
+
"409": {
|
|
5142
|
+
"description": "The request could not be completed due to a conflict with the current state of the resource. The operation may succeed if retried."
|
|
5143
|
+
},
|
|
5144
|
+
"422": {
|
|
5145
|
+
"description": "The payload you provided is invalid"
|
|
5146
|
+
},
|
|
5147
|
+
"424": {
|
|
5148
|
+
"description": "The requested operation cannot be completed because it depends on communication with an external system (e.g., charge point) that is currently disconnected or unreachable"
|
|
5149
|
+
},
|
|
5150
|
+
"429": {
|
|
5151
|
+
"description": "Too many requests. Please try again later. For more information, please check the rate limit headers X-RateLimit-*"
|
|
5152
|
+
}
|
|
5153
|
+
}
|
|
5154
|
+
},
|
|
5019
5155
|
{
|
|
5020
5156
|
"path": "/public-api/actions/transactions/v1.0/{transaction}/issue-invoice",
|
|
5021
5157
|
"method": "POST",
|
|
@@ -24970,6 +25106,14 @@
|
|
|
24970
25106
|
],
|
|
24971
25107
|
"description": "Only list Id tags in this type"
|
|
24972
25108
|
},
|
|
25109
|
+
"rfidStandard": {
|
|
25110
|
+
"type": "string",
|
|
25111
|
+
"enum": [
|
|
25112
|
+
"iso14443",
|
|
25113
|
+
"iso15693"
|
|
25114
|
+
],
|
|
25115
|
+
"description": "RFID card standard."
|
|
25116
|
+
},
|
|
24973
25117
|
"partnerId": {
|
|
24974
25118
|
"type": "string",
|
|
24975
25119
|
"format": "integer",
|
|
@@ -25075,6 +25219,14 @@
|
|
|
25075
25219
|
"mac_address"
|
|
25076
25220
|
]
|
|
25077
25221
|
},
|
|
25222
|
+
"rfidStandard": {
|
|
25223
|
+
"type": "string",
|
|
25224
|
+
"enum": [
|
|
25225
|
+
"iso14443",
|
|
25226
|
+
"iso15693"
|
|
25227
|
+
],
|
|
25228
|
+
"description": "RFID card standard."
|
|
25229
|
+
},
|
|
25078
25230
|
"vehicleType": {
|
|
25079
25231
|
"type": "string",
|
|
25080
25232
|
"enum": [
|
|
@@ -25254,6 +25406,15 @@
|
|
|
25254
25406
|
"mac_address"
|
|
25255
25407
|
]
|
|
25256
25408
|
},
|
|
25409
|
+
"rfidStandard": {
|
|
25410
|
+
"type": "string",
|
|
25411
|
+
"enum": [
|
|
25412
|
+
"iso14443",
|
|
25413
|
+
"iso15693"
|
|
25414
|
+
],
|
|
25415
|
+
"nullable": true,
|
|
25416
|
+
"description": "RFID card standard."
|
|
25417
|
+
},
|
|
25257
25418
|
"vehicleType": {
|
|
25258
25419
|
"type": "string",
|
|
25259
25420
|
"enum": [
|
|
@@ -26949,11 +27110,12 @@
|
|
|
26949
27110
|
"product_offerings",
|
|
26950
27111
|
"ev_driver_ux",
|
|
26951
27112
|
"security",
|
|
27113
|
+
"reporting",
|
|
26952
27114
|
"roaming",
|
|
26953
27115
|
"other"
|
|
26954
27116
|
],
|
|
26955
27117
|
"example": "network",
|
|
26956
|
-
"description": "Issue category: - **network**: Network connectivity or communication issues - **payments_billing**: Payment processing or billing-related issues - **product_offerings**: Issues with product features or tariff offerings - **ev_driver_ux**: EV driver user experience issues - **security**: Security-related concerns or incidents - **roaming**: Roaming-related issues - **other**: Issues not covered by other categories"
|
|
27118
|
+
"description": "Issue category: - **network**: Network connectivity or communication issues - **payments_billing**: Payment processing or billing-related issues - **product_offerings**: Issues with product features or tariff offerings - **ev_driver_ux**: EV driver user experience issues - **security**: Security-related concerns or incidents - **reporting**: Reporting or analytics issues - **roaming**: Roaming-related issues - **other**: Issues not covered by other categories"
|
|
26957
27119
|
},
|
|
26958
27120
|
"severity": {
|
|
26959
27121
|
"type": "string",
|
|
@@ -27094,11 +27256,12 @@
|
|
|
27094
27256
|
"product_offerings",
|
|
27095
27257
|
"ev_driver_ux",
|
|
27096
27258
|
"security",
|
|
27259
|
+
"reporting",
|
|
27097
27260
|
"roaming",
|
|
27098
27261
|
"other"
|
|
27099
27262
|
],
|
|
27100
27263
|
"example": "network",
|
|
27101
|
-
"description": "Issue category: - **network**: Network connectivity or communication issues - **payments_billing**: Payment processing or billing-related issues - **product_offerings**: Issues with product features or tariff offerings - **ev_driver_ux**: EV driver user experience issues - **security**: Security-related concerns or incidents - **roaming**: Roaming-related issues - **other**: Issues not covered by other categories"
|
|
27264
|
+
"description": "Issue category: - **network**: Network connectivity or communication issues - **payments_billing**: Payment processing or billing-related issues - **product_offerings**: Issues with product features or tariff offerings - **ev_driver_ux**: EV driver user experience issues - **security**: Security-related concerns or incidents - **reporting**: Reporting or analytics issues - **roaming**: Roaming-related issues - **other**: Issues not covered by other categories"
|
|
27102
27265
|
},
|
|
27103
27266
|
"severity": {
|
|
27104
27267
|
"type": "string",
|
|
@@ -27326,11 +27489,12 @@
|
|
|
27326
27489
|
"product_offerings",
|
|
27327
27490
|
"ev_driver_ux",
|
|
27328
27491
|
"security",
|
|
27492
|
+
"reporting",
|
|
27329
27493
|
"roaming",
|
|
27330
27494
|
"other"
|
|
27331
27495
|
],
|
|
27332
27496
|
"example": "network",
|
|
27333
|
-
"description": "Issue category: - **network**: Network connectivity or communication issues - **payments_billing**: Payment processing or billing-related issues - **product_offerings**: Issues with product features or tariff offerings - **ev_driver_ux**: EV driver user experience issues - **security**: Security-related concerns or incidents - **roaming**: Roaming-related issues - **other**: Issues not covered by other categories"
|
|
27497
|
+
"description": "Issue category: - **network**: Network connectivity or communication issues - **payments_billing**: Payment processing or billing-related issues - **product_offerings**: Issues with product features or tariff offerings - **ev_driver_ux**: EV driver user experience issues - **security**: Security-related concerns or incidents - **reporting**: Reporting or analytics issues - **roaming**: Roaming-related issues - **other**: Issues not covered by other categories"
|
|
27334
27498
|
},
|
|
27335
27499
|
"severity": {
|
|
27336
27500
|
"type": "string",
|
|
@@ -70017,7 +70181,7 @@
|
|
|
70017
70181
|
],
|
|
70018
70182
|
"info": {
|
|
70019
70183
|
"title": "Public API",
|
|
70020
|
-
"version": "3.
|
|
70184
|
+
"version": "3.232.1",
|
|
70021
70185
|
"description": "The Public API provides server-to-server integration capabilities for your EV charging platform.\n\n**Authentication.** Existing integrations continue to work unchanged — long-lived UUID admin tokens are sent in `Authorization: Bearer ...` with no exchange required. Two security schemes are documented for OpenAPI client tooling, both resulting in the same Bearer header at the wire level:\n - `bearerAuth` — the token in the `Authorization: Bearer ...` header is either a long-lived UUID admin token (issued via the admin UI, used directly) or a short-lived access token previously obtained via OAuth.\n - `oauth2ClientCredentials` - a `client_id` / `client_secret` pair should be exchanged for a short-lived access token at `/public-api/oauth/token` per RFC 6749 Section 4.4 (Client Credentials Grant), and the short-lived token should be used in the `Authorization: Bearer ...` header. The OAuth `client_secret` itself cannot be sent directly as a bearer token — it must be exchanged first.\n"
|
|
70022
70186
|
},
|
|
70023
70187
|
"servers": [
|
|
@@ -70031,18 +70195,18 @@
|
|
|
70031
70195
|
}
|
|
70032
70196
|
}
|
|
70033
70197
|
],
|
|
70034
|
-
"buildTimestamp": "2026-08-
|
|
70198
|
+
"buildTimestamp": "2026-08-17T08:28:28.680Z",
|
|
70035
70199
|
"stats": {
|
|
70036
|
-
"totalEndpoints":
|
|
70037
|
-
"originalSize":
|
|
70038
|
-
"optimizedSize":
|
|
70039
|
-
"reductionPercent": 71.
|
|
70040
|
-
"buildDuration":
|
|
70200
|
+
"totalEndpoints": 624,
|
|
70201
|
+
"originalSize": 5492259,
|
|
70202
|
+
"optimizedSize": 1545702,
|
|
70203
|
+
"reductionPercent": 71.86,
|
|
70204
|
+
"buildDuration": 1538,
|
|
70041
70205
|
"responseSchemas": {
|
|
70042
|
-
"total":
|
|
70043
|
-
"withSchemas":
|
|
70044
|
-
"totalSchemaSize":
|
|
70045
|
-
"averageSchemaSize":
|
|
70206
|
+
"total": 624,
|
|
70207
|
+
"withSchemas": 624,
|
|
70208
|
+
"totalSchemaSize": 3144146,
|
|
70209
|
+
"averageSchemaSize": 5039
|
|
70046
70210
|
}
|
|
70047
70211
|
}
|
|
70048
70212
|
}
|
|
@@ -10431,6 +10431,165 @@
|
|
|
10431
10431
|
}
|
|
10432
10432
|
}
|
|
10433
10433
|
},
|
|
10434
|
+
"transactionCreatePreAuthorization": {
|
|
10435
|
+
"200": {
|
|
10436
|
+
"schema": {
|
|
10437
|
+
"type": "object",
|
|
10438
|
+
"properties": {
|
|
10439
|
+
"data": {
|
|
10440
|
+
"oneOf": [
|
|
10441
|
+
{
|
|
10442
|
+
"type": "object",
|
|
10443
|
+
"description": "Create-pre-authorization result for a transaction whose payment processor is Worldline.\nRedirect the customer to `redirectUrl` to complete the hosted-checkout\npre-authorisation.\n",
|
|
10444
|
+
"properties": {
|
|
10445
|
+
"processor": {
|
|
10446
|
+
"type": "string",
|
|
10447
|
+
"enum": [
|
|
10448
|
+
"worldline"
|
|
10449
|
+
],
|
|
10450
|
+
"description": "The payment processor that produced this result."
|
|
10451
|
+
},
|
|
10452
|
+
"redirectUrl": {
|
|
10453
|
+
"type": "string",
|
|
10454
|
+
"description": "Worldline hosted-checkout URL the portal redirects the customer to in order to complete the pre-authorisation."
|
|
10455
|
+
},
|
|
10456
|
+
"reference": {
|
|
10457
|
+
"type": "string",
|
|
10458
|
+
"description": "Worldline hosted checkout id stored on the transaction as the provider reference."
|
|
10459
|
+
}
|
|
10460
|
+
},
|
|
10461
|
+
"required": [
|
|
10462
|
+
"processor",
|
|
10463
|
+
"redirectUrl",
|
|
10464
|
+
"reference"
|
|
10465
|
+
],
|
|
10466
|
+
"additionalProperties": false
|
|
10467
|
+
},
|
|
10468
|
+
{
|
|
10469
|
+
"type": "object",
|
|
10470
|
+
"description": "Create-pre-authorization result for a transaction whose payment processor is Stripe.\nConfirm the PaymentIntent client-side using `clientSecret` to complete the\npre-authorisation.\n",
|
|
10471
|
+
"properties": {
|
|
10472
|
+
"processor": {
|
|
10473
|
+
"type": "string",
|
|
10474
|
+
"enum": [
|
|
10475
|
+
"stripe"
|
|
10476
|
+
],
|
|
10477
|
+
"description": "The payment processor that produced this result."
|
|
10478
|
+
},
|
|
10479
|
+
"clientSecret": {
|
|
10480
|
+
"type": "string",
|
|
10481
|
+
"description": "Stripe PaymentIntent client secret the portal uses to confirm the pre-authorisation via Stripe Elements."
|
|
10482
|
+
},
|
|
10483
|
+
"paymentIntentId": {
|
|
10484
|
+
"type": "string",
|
|
10485
|
+
"description": "Stripe PaymentIntent id (pi_…) stored on the transaction as the provider reference."
|
|
10486
|
+
}
|
|
10487
|
+
},
|
|
10488
|
+
"required": [
|
|
10489
|
+
"processor",
|
|
10490
|
+
"clientSecret",
|
|
10491
|
+
"paymentIntentId"
|
|
10492
|
+
],
|
|
10493
|
+
"additionalProperties": false
|
|
10494
|
+
}
|
|
10495
|
+
],
|
|
10496
|
+
"discriminator": {
|
|
10497
|
+
"propertyName": "processor"
|
|
10498
|
+
}
|
|
10499
|
+
}
|
|
10500
|
+
},
|
|
10501
|
+
"required": [
|
|
10502
|
+
"data"
|
|
10503
|
+
]
|
|
10504
|
+
}
|
|
10505
|
+
},
|
|
10506
|
+
"401": {
|
|
10507
|
+
"schema": {
|
|
10508
|
+
"type": "object",
|
|
10509
|
+
"properties": {
|
|
10510
|
+
"message": {
|
|
10511
|
+
"type": "string"
|
|
10512
|
+
}
|
|
10513
|
+
}
|
|
10514
|
+
}
|
|
10515
|
+
},
|
|
10516
|
+
"403": {
|
|
10517
|
+
"schema": {
|
|
10518
|
+
"type": "object",
|
|
10519
|
+
"properties": {
|
|
10520
|
+
"message": {
|
|
10521
|
+
"type": "string",
|
|
10522
|
+
"default": "This action is unauthorized."
|
|
10523
|
+
}
|
|
10524
|
+
}
|
|
10525
|
+
}
|
|
10526
|
+
},
|
|
10527
|
+
"404": {
|
|
10528
|
+
"schema": {
|
|
10529
|
+
"type": "object",
|
|
10530
|
+
"properties": {
|
|
10531
|
+
"message": {
|
|
10532
|
+
"type": "string"
|
|
10533
|
+
}
|
|
10534
|
+
}
|
|
10535
|
+
}
|
|
10536
|
+
},
|
|
10537
|
+
"409": {
|
|
10538
|
+
"schema": {
|
|
10539
|
+
"type": "object",
|
|
10540
|
+
"properties": {
|
|
10541
|
+
"message": {
|
|
10542
|
+
"type": "string"
|
|
10543
|
+
}
|
|
10544
|
+
}
|
|
10545
|
+
}
|
|
10546
|
+
},
|
|
10547
|
+
"422": {
|
|
10548
|
+
"schema": {
|
|
10549
|
+
"type": "object",
|
|
10550
|
+
"required": [
|
|
10551
|
+
"message"
|
|
10552
|
+
],
|
|
10553
|
+
"properties": {
|
|
10554
|
+
"message": {
|
|
10555
|
+
"type": "string"
|
|
10556
|
+
},
|
|
10557
|
+
"errors": {
|
|
10558
|
+
"type": "object",
|
|
10559
|
+
"additionalProperties": {
|
|
10560
|
+
"type": "array",
|
|
10561
|
+
"items": {
|
|
10562
|
+
"type": "string"
|
|
10563
|
+
}
|
|
10564
|
+
}
|
|
10565
|
+
}
|
|
10566
|
+
}
|
|
10567
|
+
}
|
|
10568
|
+
},
|
|
10569
|
+
"424": {
|
|
10570
|
+
"schema": {
|
|
10571
|
+
"type": "object",
|
|
10572
|
+
"required": [
|
|
10573
|
+
"message"
|
|
10574
|
+
],
|
|
10575
|
+
"properties": {
|
|
10576
|
+
"message": {
|
|
10577
|
+
"type": "string"
|
|
10578
|
+
}
|
|
10579
|
+
}
|
|
10580
|
+
}
|
|
10581
|
+
},
|
|
10582
|
+
"429": {
|
|
10583
|
+
"schema": {
|
|
10584
|
+
"type": "object",
|
|
10585
|
+
"properties": {
|
|
10586
|
+
"message": {
|
|
10587
|
+
"type": "string"
|
|
10588
|
+
}
|
|
10589
|
+
}
|
|
10590
|
+
}
|
|
10591
|
+
}
|
|
10592
|
+
},
|
|
10434
10593
|
"transactionIssueInvoice": {
|
|
10435
10594
|
"401": {
|
|
10436
10595
|
"schema": {
|
|
@@ -58823,6 +58982,14 @@
|
|
|
58823
58982
|
"emaid"
|
|
58824
58983
|
]
|
|
58825
58984
|
},
|
|
58985
|
+
"rfidStandard": {
|
|
58986
|
+
"description": "RFID card standard.",
|
|
58987
|
+
"type": "string",
|
|
58988
|
+
"enum": [
|
|
58989
|
+
"iso14443",
|
|
58990
|
+
"iso15693"
|
|
58991
|
+
]
|
|
58992
|
+
},
|
|
58826
58993
|
"vehicleType": {
|
|
58827
58994
|
"type": "string",
|
|
58828
58995
|
"nullable": true,
|
|
@@ -59106,6 +59273,14 @@
|
|
|
59106
59273
|
"emaid"
|
|
59107
59274
|
]
|
|
59108
59275
|
},
|
|
59276
|
+
"rfidStandard": {
|
|
59277
|
+
"description": "RFID card standard.",
|
|
59278
|
+
"type": "string",
|
|
59279
|
+
"enum": [
|
|
59280
|
+
"iso14443",
|
|
59281
|
+
"iso15693"
|
|
59282
|
+
]
|
|
59283
|
+
},
|
|
59109
59284
|
"vehicleType": {
|
|
59110
59285
|
"type": "string",
|
|
59111
59286
|
"nullable": true,
|
|
@@ -59274,6 +59449,14 @@
|
|
|
59274
59449
|
"emaid"
|
|
59275
59450
|
]
|
|
59276
59451
|
},
|
|
59452
|
+
"rfidStandard": {
|
|
59453
|
+
"description": "RFID card standard.",
|
|
59454
|
+
"type": "string",
|
|
59455
|
+
"enum": [
|
|
59456
|
+
"iso14443",
|
|
59457
|
+
"iso15693"
|
|
59458
|
+
]
|
|
59459
|
+
},
|
|
59277
59460
|
"vehicleType": {
|
|
59278
59461
|
"type": "string",
|
|
59279
59462
|
"nullable": true,
|
|
@@ -59463,6 +59646,14 @@
|
|
|
59463
59646
|
"emaid"
|
|
59464
59647
|
]
|
|
59465
59648
|
},
|
|
59649
|
+
"rfidStandard": {
|
|
59650
|
+
"description": "RFID card standard.",
|
|
59651
|
+
"type": "string",
|
|
59652
|
+
"enum": [
|
|
59653
|
+
"iso14443",
|
|
59654
|
+
"iso15693"
|
|
59655
|
+
]
|
|
59656
|
+
},
|
|
59466
59657
|
"vehicleType": {
|
|
59467
59658
|
"type": "string",
|
|
59468
59659
|
"nullable": true,
|
|
@@ -63058,10 +63249,11 @@
|
|
|
63058
63249
|
"product_offerings",
|
|
63059
63250
|
"ev_driver_ux",
|
|
63060
63251
|
"security",
|
|
63252
|
+
"reporting",
|
|
63061
63253
|
"roaming",
|
|
63062
63254
|
"other"
|
|
63063
63255
|
],
|
|
63064
|
-
"description": "Issue category:\n- **network**: Network connectivity or communication issues\n- **payments_billing**: Payment processing or billing-related issues\n- **product_offerings**: Issues with product features or tariff offerings\n- **ev_driver_ux**: EV driver user experience issues\n- **security**: Security-related concerns or incidents\n- **roaming**: Roaming-related issues\n- **other**: Issues not covered by other categories\n",
|
|
63256
|
+
"description": "Issue category:\n- **network**: Network connectivity or communication issues\n- **payments_billing**: Payment processing or billing-related issues\n- **product_offerings**: Issues with product features or tariff offerings\n- **ev_driver_ux**: EV driver user experience issues\n- **security**: Security-related concerns or incidents\n- **reporting**: Reporting or analytics issues\n- **roaming**: Roaming-related issues\n- **other**: Issues not covered by other categories\n",
|
|
63065
63257
|
"example": "network"
|
|
63066
63258
|
},
|
|
63067
63259
|
"severity": {
|
|
@@ -63325,10 +63517,11 @@
|
|
|
63325
63517
|
"product_offerings",
|
|
63326
63518
|
"ev_driver_ux",
|
|
63327
63519
|
"security",
|
|
63520
|
+
"reporting",
|
|
63328
63521
|
"roaming",
|
|
63329
63522
|
"other"
|
|
63330
63523
|
],
|
|
63331
|
-
"description": "Issue category:\n- **network**: Network connectivity or communication issues\n- **payments_billing**: Payment processing or billing-related issues\n- **product_offerings**: Issues with product features or tariff offerings\n- **ev_driver_ux**: EV driver user experience issues\n- **security**: Security-related concerns or incidents\n- **roaming**: Roaming-related issues\n- **other**: Issues not covered by other categories\n",
|
|
63524
|
+
"description": "Issue category:\n- **network**: Network connectivity or communication issues\n- **payments_billing**: Payment processing or billing-related issues\n- **product_offerings**: Issues with product features or tariff offerings\n- **ev_driver_ux**: EV driver user experience issues\n- **security**: Security-related concerns or incidents\n- **reporting**: Reporting or analytics issues\n- **roaming**: Roaming-related issues\n- **other**: Issues not covered by other categories\n",
|
|
63332
63525
|
"example": "network"
|
|
63333
63526
|
},
|
|
63334
63527
|
"severity": {
|
|
@@ -63553,10 +63746,11 @@
|
|
|
63553
63746
|
"product_offerings",
|
|
63554
63747
|
"ev_driver_ux",
|
|
63555
63748
|
"security",
|
|
63749
|
+
"reporting",
|
|
63556
63750
|
"roaming",
|
|
63557
63751
|
"other"
|
|
63558
63752
|
],
|
|
63559
|
-
"description": "Issue category:\n- **network**: Network connectivity or communication issues\n- **payments_billing**: Payment processing or billing-related issues\n- **product_offerings**: Issues with product features or tariff offerings\n- **ev_driver_ux**: EV driver user experience issues\n- **security**: Security-related concerns or incidents\n- **roaming**: Roaming-related issues\n- **other**: Issues not covered by other categories\n",
|
|
63753
|
+
"description": "Issue category:\n- **network**: Network connectivity or communication issues\n- **payments_billing**: Payment processing or billing-related issues\n- **product_offerings**: Issues with product features or tariff offerings\n- **ev_driver_ux**: EV driver user experience issues\n- **security**: Security-related concerns or incidents\n- **reporting**: Reporting or analytics issues\n- **roaming**: Roaming-related issues\n- **other**: Issues not covered by other categories\n",
|
|
63560
63754
|
"example": "network"
|
|
63561
63755
|
},
|
|
63562
63756
|
"severity": {
|
|
@@ -63834,10 +64028,11 @@
|
|
|
63834
64028
|
"product_offerings",
|
|
63835
64029
|
"ev_driver_ux",
|
|
63836
64030
|
"security",
|
|
64031
|
+
"reporting",
|
|
63837
64032
|
"roaming",
|
|
63838
64033
|
"other"
|
|
63839
64034
|
],
|
|
63840
|
-
"description": "Issue category:\n- **network**: Network connectivity or communication issues\n- **payments_billing**: Payment processing or billing-related issues\n- **product_offerings**: Issues with product features or tariff offerings\n- **ev_driver_ux**: EV driver user experience issues\n- **security**: Security-related concerns or incidents\n- **roaming**: Roaming-related issues\n- **other**: Issues not covered by other categories\n",
|
|
64035
|
+
"description": "Issue category:\n- **network**: Network connectivity or communication issues\n- **payments_billing**: Payment processing or billing-related issues\n- **product_offerings**: Issues with product features or tariff offerings\n- **ev_driver_ux**: EV driver user experience issues\n- **security**: Security-related concerns or incidents\n- **reporting**: Reporting or analytics issues\n- **roaming**: Roaming-related issues\n- **other**: Issues not covered by other categories\n",
|
|
63841
64036
|
"example": "network"
|
|
63842
64037
|
},
|
|
63843
64038
|
"severity": {
|