@ampeco/public-api-mcp 3.103.10 → 3.103.12
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 +972 -223
- package/dist/generated/response-schemas.json +8604 -2173
- package/dist/generated/schemas.d.ts +468 -185
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +143 -62
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +145 -62
- package/package.json +1 -1
|
@@ -2075,6 +2075,148 @@
|
|
|
2075
2075
|
}
|
|
2076
2076
|
}
|
|
2077
2077
|
},
|
|
2078
|
+
{
|
|
2079
|
+
"path": "/public-api/actions/evse/v1.0/bulk-assign-tariff-group",
|
|
2080
|
+
"method": "POST",
|
|
2081
|
+
"operationId": "evseBulkAssignTariffGroups",
|
|
2082
|
+
"summary": "EVSEs / Bulk Assign Tariff Groups",
|
|
2083
|
+
"description": "Bulk assign tariff groups for multiple EVSEs. This action allows you to assign or unassign tariff groups to multiple EVSEs at once, filtered by location, partner, evses and tariff groups. The update is processed synchronously and there is a limit of max 1000 EVSEs per request.",
|
|
2084
|
+
"tags": [
|
|
2085
|
+
"action / evse"
|
|
2086
|
+
],
|
|
2087
|
+
"requestBody": {
|
|
2088
|
+
"required": true,
|
|
2089
|
+
"content": {
|
|
2090
|
+
"application/json": {
|
|
2091
|
+
"schema": {
|
|
2092
|
+
"type": "object",
|
|
2093
|
+
"properties": {
|
|
2094
|
+
"filters": {
|
|
2095
|
+
"type": "object",
|
|
2096
|
+
"properties": {
|
|
2097
|
+
"locationIds": {
|
|
2098
|
+
"type": "array",
|
|
2099
|
+
"items": {
|
|
2100
|
+
"type": "integer"
|
|
2101
|
+
},
|
|
2102
|
+
"example": [
|
|
2103
|
+
1,
|
|
2104
|
+
2,
|
|
2105
|
+
3
|
|
2106
|
+
],
|
|
2107
|
+
"description": "Filter EVSEs by location IDs"
|
|
2108
|
+
},
|
|
2109
|
+
"partnerIds": {
|
|
2110
|
+
"type": "array",
|
|
2111
|
+
"items": {
|
|
2112
|
+
"type": "integer"
|
|
2113
|
+
},
|
|
2114
|
+
"example": [
|
|
2115
|
+
10,
|
|
2116
|
+
20
|
|
2117
|
+
],
|
|
2118
|
+
"description": "Filter EVSEs by partner IDs"
|
|
2119
|
+
},
|
|
2120
|
+
"evseIds": {
|
|
2121
|
+
"type": "array",
|
|
2122
|
+
"items": {
|
|
2123
|
+
"type": "integer"
|
|
2124
|
+
},
|
|
2125
|
+
"example": [
|
|
2126
|
+
10,
|
|
2127
|
+
20
|
|
2128
|
+
],
|
|
2129
|
+
"description": "Filter EVSEs by EVSE IDs"
|
|
2130
|
+
},
|
|
2131
|
+
"chargePointIds": {
|
|
2132
|
+
"type": "array",
|
|
2133
|
+
"items": {
|
|
2134
|
+
"type": "integer"
|
|
2135
|
+
},
|
|
2136
|
+
"example": [
|
|
2137
|
+
10,
|
|
2138
|
+
20
|
|
2139
|
+
],
|
|
2140
|
+
"description": "Filter EVSEs by Charge point IDs"
|
|
2141
|
+
},
|
|
2142
|
+
"tariffGroupIds": {
|
|
2143
|
+
"type": "array",
|
|
2144
|
+
"items": {
|
|
2145
|
+
"type": "integer"
|
|
2146
|
+
},
|
|
2147
|
+
"example": [
|
|
2148
|
+
10,
|
|
2149
|
+
20
|
|
2150
|
+
],
|
|
2151
|
+
"description": "Filter EVSEs by tariff group IDs"
|
|
2152
|
+
}
|
|
2153
|
+
},
|
|
2154
|
+
"description": "Optional filters to select EVSEs for bulk update"
|
|
2155
|
+
},
|
|
2156
|
+
"tariffGroupId": {
|
|
2157
|
+
"type": "integer",
|
|
2158
|
+
"example": 42,
|
|
2159
|
+
"nullable": true,
|
|
2160
|
+
"description": "The tariff group ID to assign (null to unassign)"
|
|
2161
|
+
}
|
|
2162
|
+
},
|
|
2163
|
+
"required": [
|
|
2164
|
+
"tariffGroupId"
|
|
2165
|
+
],
|
|
2166
|
+
"example": {
|
|
2167
|
+
"filters": {
|
|
2168
|
+
"locationIds": [
|
|
2169
|
+
1,
|
|
2170
|
+
2
|
|
2171
|
+
],
|
|
2172
|
+
"partnerIds": [
|
|
2173
|
+
10
|
|
2174
|
+
],
|
|
2175
|
+
"evseIds": [
|
|
2176
|
+
10,
|
|
2177
|
+
20
|
|
2178
|
+
],
|
|
2179
|
+
"chargePointIds": [
|
|
2180
|
+
10,
|
|
2181
|
+
20
|
|
2182
|
+
],
|
|
2183
|
+
"tariffGroupIds": [
|
|
2184
|
+
10
|
|
2185
|
+
]
|
|
2186
|
+
},
|
|
2187
|
+
"tariffGroupId": 42
|
|
2188
|
+
}
|
|
2189
|
+
}
|
|
2190
|
+
}
|
|
2191
|
+
}
|
|
2192
|
+
},
|
|
2193
|
+
"responses": {
|
|
2194
|
+
"202": {
|
|
2195
|
+
"description": "Action accepted"
|
|
2196
|
+
},
|
|
2197
|
+
"204": {
|
|
2198
|
+
"description": "Action scheduled. Request has been accepted and will be executed when transaction(s) in progress have finished."
|
|
2199
|
+
},
|
|
2200
|
+
"401": {
|
|
2201
|
+
"description": "Access token is missing or invalid"
|
|
2202
|
+
},
|
|
2203
|
+
"403": {
|
|
2204
|
+
"description": "You do not have permission to perform the action"
|
|
2205
|
+
},
|
|
2206
|
+
"404": {
|
|
2207
|
+
"description": "The record is not found"
|
|
2208
|
+
},
|
|
2209
|
+
"406": {
|
|
2210
|
+
"description": "Action rejected by the Charge Point"
|
|
2211
|
+
},
|
|
2212
|
+
"422": {
|
|
2213
|
+
"description": "The payload you provided is invalid"
|
|
2214
|
+
},
|
|
2215
|
+
"429": {
|
|
2216
|
+
"description": "Too many requests. Please try again later. For more information, please check the rate limit headers X-RateLimit-*"
|
|
2217
|
+
}
|
|
2218
|
+
}
|
|
2219
|
+
},
|
|
2078
2220
|
{
|
|
2079
2221
|
"path": "/public-api/actions/evse/v1.0/{evse}/start",
|
|
2080
2222
|
"method": "POST",
|
|
@@ -5422,6 +5564,11 @@
|
|
|
5422
5564
|
"type": "string",
|
|
5423
5565
|
"format": "date-time",
|
|
5424
5566
|
"description": "Filter requests that were created before this date"
|
|
5567
|
+
},
|
|
5568
|
+
"externalId": {
|
|
5569
|
+
"type": "string",
|
|
5570
|
+
"example": "OCPI-REQ-12345",
|
|
5571
|
+
"description": "Filter by external identifier from roaming partner (e.g., OCPI request_id)"
|
|
5425
5572
|
}
|
|
5426
5573
|
}
|
|
5427
5574
|
}
|
|
@@ -5494,7 +5641,7 @@
|
|
|
5494
5641
|
},
|
|
5495
5642
|
"rejectionReason": {
|
|
5496
5643
|
"type": "string",
|
|
5497
|
-
"description": "
|
|
5644
|
+
"description": "Human-readable reason for rejection. Response behavior: Only present when status is \"rejected\". Omitted for \"pending\" and \"approved\" requests."
|
|
5498
5645
|
},
|
|
5499
5646
|
"createdAt": {
|
|
5500
5647
|
"type": "string",
|
|
@@ -5512,69 +5659,157 @@
|
|
|
5512
5659
|
"type": "integer",
|
|
5513
5660
|
"description": "ID of the target location"
|
|
5514
5661
|
},
|
|
5662
|
+
"externalId": {
|
|
5663
|
+
"type": "string",
|
|
5664
|
+
"maxLength": 255,
|
|
5665
|
+
"description": "External identifier from roaming partner (e.g., OCPI request_id). Response behavior: Only present when an external ID was provided. Omitted when not specified."
|
|
5666
|
+
},
|
|
5667
|
+
"startAt": {
|
|
5668
|
+
"type": "string",
|
|
5669
|
+
"format": "date-time",
|
|
5670
|
+
"description": "Start time of the booking"
|
|
5671
|
+
},
|
|
5672
|
+
"endAt": {
|
|
5673
|
+
"type": "string",
|
|
5674
|
+
"format": "date-time",
|
|
5675
|
+
"description": "End time of the booking"
|
|
5676
|
+
},
|
|
5515
5677
|
"evseId": {
|
|
5516
5678
|
"type": "integer",
|
|
5517
|
-
"description": "Specific EVSE ID
|
|
5679
|
+
"description": "Specific EVSE ID to book. Response behavior: Only present when a specific EVSE was requested. Omitted when EVSE selection was based on criteria or left to the system."
|
|
5518
5680
|
},
|
|
5519
5681
|
"evseCriteria": {
|
|
5520
5682
|
"type": "object",
|
|
5521
5683
|
"properties": {
|
|
5522
5684
|
"currentType": {
|
|
5523
|
-
"
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5685
|
+
"oneOf": [
|
|
5686
|
+
{
|
|
5687
|
+
"type": "string",
|
|
5688
|
+
"enum": [
|
|
5689
|
+
"ac",
|
|
5690
|
+
"dc"
|
|
5691
|
+
],
|
|
5692
|
+
"description": "Type of current available on the EVSE: - **ac**: Alternating Current (AC) charging - **dc**: Direct Current (DC) fast charging"
|
|
5693
|
+
},
|
|
5694
|
+
{
|
|
5695
|
+
"type": "null"
|
|
5696
|
+
}
|
|
5527
5697
|
],
|
|
5528
|
-
"description": "
|
|
5698
|
+
"description": "Required current type (AC or DC). Omitted in response when not specified."
|
|
5529
5699
|
},
|
|
5530
5700
|
"minPower": {
|
|
5531
5701
|
"type": "number",
|
|
5532
|
-
"description": "Minimum power requirement
|
|
5702
|
+
"description": "Minimum power requirement in kW. Omitted in response when not specified."
|
|
5533
5703
|
},
|
|
5534
5704
|
"maxPower": {
|
|
5535
5705
|
"type": "number",
|
|
5536
|
-
"description": "Maximum power requirement
|
|
5706
|
+
"description": "Maximum power requirement in kW. Omitted in response when not specified."
|
|
5537
5707
|
},
|
|
5538
5708
|
"connectorType": {
|
|
5539
|
-
"
|
|
5540
|
-
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5545
|
-
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
|
|
5550
|
-
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
|
|
5555
|
-
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5709
|
+
"oneOf": [
|
|
5710
|
+
{
|
|
5711
|
+
"type": "string",
|
|
5712
|
+
"enum": [
|
|
5713
|
+
"type1",
|
|
5714
|
+
"type2",
|
|
5715
|
+
"type3",
|
|
5716
|
+
"chademo",
|
|
5717
|
+
"ccs1",
|
|
5718
|
+
"ccs2",
|
|
5719
|
+
"schuko",
|
|
5720
|
+
"nacs",
|
|
5721
|
+
"cee16",
|
|
5722
|
+
"cee32",
|
|
5723
|
+
"j1772",
|
|
5724
|
+
"inductive",
|
|
5725
|
+
"nema-5-20",
|
|
5726
|
+
"type-e-french",
|
|
5727
|
+
"type-g-british",
|
|
5728
|
+
"type-j-swiss",
|
|
5729
|
+
"avcon",
|
|
5730
|
+
"gb-t-ac",
|
|
5731
|
+
"gb-t-dc",
|
|
5732
|
+
"chaoji",
|
|
5733
|
+
"nema-6-30",
|
|
5734
|
+
"nema-6-50"
|
|
5735
|
+
],
|
|
5736
|
+
"description": "Type of connector available on the EVSE: - **type1**: Type 1 connector (SAE J1772 AC) - **type2**: Type 2 connector (IEC 62196-2 AC) - **type3**: Type 3 connector (IEC 62196-2 AC) - **chademo**: CHAdeMO DC fast charging - **ccs1**: Combined Charging System 1 (CCS1/Combo 1) - **ccs2**: Combined Charging System 2 (CCS2/Combo 2) - **schuko**: Standard European household socket - **nacs**: North American Charging Standard (Tesla) - **cee16**: CEE 16A industrial connector - **cee32**: CEE 32A industrial connector - **j1772**: SAE J1772 connector - **inductive**: Inductive/wireless charging - **nema-5-20**: Domestic M NEMA 5-20 Socket - **type-e-french**: French Type E socket - **type-g-british**: British Type G socket - **type-j-swiss**: Swiss Type J socket - **avcon**: AVCON connector (Australian standard) - **gb-t-ac**: GB/T AC connector (Chinese standard) - **gb-t-dc**: GB/T DC connector (Chinese standard) - **chaoji**: ChaoJi (CHAdeMO 3.0) - **nema-6-30**: NEMA 6-30 - **nema-6-50**: NEMA 6-50"
|
|
5737
|
+
},
|
|
5738
|
+
{
|
|
5739
|
+
"type": "null"
|
|
5740
|
+
}
|
|
5563
5741
|
],
|
|
5564
|
-
"description": "
|
|
5742
|
+
"description": "Required connector type. Omitted in response when not specified."
|
|
5565
5743
|
}
|
|
5566
5744
|
},
|
|
5567
|
-
"description": "Criteria for
|
|
5745
|
+
"description": "Criteria for automatic EVSE selection based on technical requirements. Ignored when evseId is explicitly provided. Response behavior: Only present when EVSE criteria were specified in the request. Omitted when evseId was provided or no criteria were specified."
|
|
5568
5746
|
},
|
|
5569
|
-
"
|
|
5570
|
-
"type": "
|
|
5571
|
-
"
|
|
5572
|
-
|
|
5747
|
+
"parkingSpaceCriteria": {
|
|
5748
|
+
"type": "object",
|
|
5749
|
+
"properties": {
|
|
5750
|
+
"vehicleWeightKg": {
|
|
5751
|
+
"type": "integer",
|
|
5752
|
+
"minimum": 1,
|
|
5753
|
+
"description": "Vehicle weight in kilograms. Omitted in response when not specified."
|
|
5754
|
+
},
|
|
5755
|
+
"vehicleHeightCm": {
|
|
5756
|
+
"type": "integer",
|
|
5757
|
+
"minimum": 1,
|
|
5758
|
+
"description": "Vehicle height in centimeters. Omitted in response when not specified."
|
|
5759
|
+
},
|
|
5760
|
+
"vehicleLengthCm": {
|
|
5761
|
+
"type": "integer",
|
|
5762
|
+
"minimum": 1,
|
|
5763
|
+
"description": "Vehicle length in centimeters. Omitted in response when not specified."
|
|
5764
|
+
},
|
|
5765
|
+
"vehicleWidthCm": {
|
|
5766
|
+
"type": "integer",
|
|
5767
|
+
"minimum": 1,
|
|
5768
|
+
"description": "Vehicle width in centimeters. Omitted in response when not specified."
|
|
5769
|
+
},
|
|
5770
|
+
"vehicleType": {
|
|
5771
|
+
"oneOf": [
|
|
5772
|
+
{
|
|
5773
|
+
"type": "string",
|
|
5774
|
+
"enum": [
|
|
5775
|
+
"two_and_three_wheel_vehicles_and_quadricycles",
|
|
5776
|
+
"passenger_vehicles",
|
|
5777
|
+
"passenger_vehicles_with_trailer",
|
|
5778
|
+
"light_duty_vans",
|
|
5779
|
+
"heavy_duty_tractor_units_without_trailer",
|
|
5780
|
+
"heavy_duty_trucks_without_articulation_point",
|
|
5781
|
+
"heavy_duty_trucks_with_trailer_attached",
|
|
5782
|
+
"buses_or_motor_coaches"
|
|
5783
|
+
],
|
|
5784
|
+
"description": "Type of vehicle that can use the parking space: - **two_and_three_wheel_vehicles_and_quadricycles**: Motorcycles, scooters, and similar - **passenger_vehicles**: Standard cars - **passenger_vehicles_with_trailer**: Cars with trailers attached - **light_duty_vans**: Small commercial vans - **heavy_duty_tractor_units_without_trailer**: Heavy trucks without trailer - **heavy_duty_trucks_without_articulation_point**: Heavy trucks without articulation - **heavy_duty_trucks_with_trailer_attached**: Heavy trucks with trailer - **buses_or_motor_coaches**: Buses and coaches"
|
|
5785
|
+
},
|
|
5786
|
+
{
|
|
5787
|
+
"type": "null"
|
|
5788
|
+
}
|
|
5789
|
+
],
|
|
5790
|
+
"description": "Required vehicle type. Omitted in response when not specified."
|
|
5791
|
+
},
|
|
5792
|
+
"driveThroughRequired": {
|
|
5793
|
+
"type": "boolean",
|
|
5794
|
+
"description": "Whether parking space must support drive-through charging. Omitted in response when not specified."
|
|
5795
|
+
},
|
|
5796
|
+
"refrigerationOutletRequired": {
|
|
5797
|
+
"type": "boolean",
|
|
5798
|
+
"description": "Whether parking space must have refrigeration outlet. Omitted in response when not specified."
|
|
5799
|
+
},
|
|
5800
|
+
"dangerousGoodsAllowed": {
|
|
5801
|
+
"type": "boolean",
|
|
5802
|
+
"description": "Whether parking space must allow dangerous goods vehicles. Omitted in response when not specified."
|
|
5803
|
+
}
|
|
5804
|
+
},
|
|
5805
|
+
"description": "Parking space criteria for selecting EVSE with suitable parking. Response behavior: This property is only included in the response when parking criteria were specified in the request. If no criteria were provided, this property is omitted entirely."
|
|
5573
5806
|
},
|
|
5574
|
-
"
|
|
5575
|
-
"type": "
|
|
5576
|
-
"
|
|
5577
|
-
|
|
5807
|
+
"authorizedTokenIds": {
|
|
5808
|
+
"type": "array",
|
|
5809
|
+
"items": {
|
|
5810
|
+
"type": "integer"
|
|
5811
|
+
},
|
|
5812
|
+
"description": "Array of OCPI token IDs that are authorized for this booking. Multiple tokens allow flexibility for roaming users who may have multiple valid authentication methods (e.g., RFID card and mobile app token). When omitted, the booking will not have specific token authorization."
|
|
5578
5813
|
}
|
|
5579
5814
|
},
|
|
5580
5815
|
"required": [
|
|
@@ -5583,7 +5818,8 @@
|
|
|
5583
5818
|
"locationId",
|
|
5584
5819
|
"startAt",
|
|
5585
5820
|
"endAt"
|
|
5586
|
-
]
|
|
5821
|
+
],
|
|
5822
|
+
"description": "Base properties for create booking request (shared between input and response)"
|
|
5587
5823
|
},
|
|
5588
5824
|
{
|
|
5589
5825
|
"type": "object",
|
|
@@ -5610,7 +5846,7 @@
|
|
|
5610
5846
|
},
|
|
5611
5847
|
"rejectionReason": {
|
|
5612
5848
|
"type": "string",
|
|
5613
|
-
"description": "
|
|
5849
|
+
"description": "Human-readable reason for rejection. Response behavior: Only present when status is \"rejected\". Omitted for \"pending\" and \"approved\" requests."
|
|
5614
5850
|
},
|
|
5615
5851
|
"createdAt": {
|
|
5616
5852
|
"type": "string",
|
|
@@ -5628,6 +5864,11 @@
|
|
|
5628
5864
|
"type": "integer",
|
|
5629
5865
|
"description": "ID of the user for whom the booking is made"
|
|
5630
5866
|
},
|
|
5867
|
+
"externalId": {
|
|
5868
|
+
"type": "string",
|
|
5869
|
+
"maxLength": 255,
|
|
5870
|
+
"description": "External identifier from roaming partner (e.g., OCPI request_id). Response behavior: Only present when an external ID was provided. Omitted when not specified."
|
|
5871
|
+
},
|
|
5631
5872
|
"startAt": {
|
|
5632
5873
|
"type": "string",
|
|
5633
5874
|
"format": "date-time",
|
|
@@ -5637,12 +5878,20 @@
|
|
|
5637
5878
|
"type": "string",
|
|
5638
5879
|
"format": "date-time",
|
|
5639
5880
|
"description": "Updated end time of the booking"
|
|
5881
|
+
},
|
|
5882
|
+
"authorizedTokenIds": {
|
|
5883
|
+
"type": "array",
|
|
5884
|
+
"items": {
|
|
5885
|
+
"type": "integer"
|
|
5886
|
+
},
|
|
5887
|
+
"description": "Array of OCPI token IDs that are authorized for this booking. Multiple tokens allow flexibility for roaming users who may have multiple valid authentication methods (e.g., RFID card and mobile app token). When omitted, the booking will not have specific token authorization."
|
|
5640
5888
|
}
|
|
5641
5889
|
},
|
|
5642
5890
|
"required": [
|
|
5643
5891
|
"type",
|
|
5644
5892
|
"bookingId"
|
|
5645
|
-
]
|
|
5893
|
+
],
|
|
5894
|
+
"description": "Base properties for update booking request (shared between input and response)"
|
|
5646
5895
|
},
|
|
5647
5896
|
{
|
|
5648
5897
|
"type": "object",
|
|
@@ -5669,7 +5918,7 @@
|
|
|
5669
5918
|
},
|
|
5670
5919
|
"rejectionReason": {
|
|
5671
5920
|
"type": "string",
|
|
5672
|
-
"description": "
|
|
5921
|
+
"description": "Human-readable reason for rejection. Response behavior: Only present when status is \"rejected\". Omitted for \"pending\" and \"approved\" requests."
|
|
5673
5922
|
},
|
|
5674
5923
|
"createdAt": {
|
|
5675
5924
|
"type": "string",
|
|
@@ -5682,6 +5931,11 @@
|
|
|
5682
5931
|
"bookingId": {
|
|
5683
5932
|
"type": "integer",
|
|
5684
5933
|
"description": "ID of the target booking to cancel"
|
|
5934
|
+
},
|
|
5935
|
+
"externalId": {
|
|
5936
|
+
"type": "string",
|
|
5937
|
+
"maxLength": 255,
|
|
5938
|
+
"description": "External identifier from roaming partner (e.g., OCPI request_id). Response behavior: Only present when an external ID was provided. Omitted when not specified."
|
|
5685
5939
|
}
|
|
5686
5940
|
},
|
|
5687
5941
|
"required": [
|
|
@@ -11289,6 +11543,23 @@
|
|
|
11289
11543
|
}
|
|
11290
11544
|
}
|
|
11291
11545
|
},
|
|
11546
|
+
"filter": {
|
|
11547
|
+
"schema": {
|
|
11548
|
+
"type": "object",
|
|
11549
|
+
"properties": {
|
|
11550
|
+
"lastUpdatedAfter": {
|
|
11551
|
+
"type": "string",
|
|
11552
|
+
"format": "date-time",
|
|
11553
|
+
"description": "ISO 8601 formatted date. Only list status logs created after this datetime"
|
|
11554
|
+
},
|
|
11555
|
+
"lastUpdatedBefore": {
|
|
11556
|
+
"type": "string",
|
|
11557
|
+
"format": "date-time",
|
|
11558
|
+
"description": "ISO 8601 formatted date. Only list status logs created after this datetime"
|
|
11559
|
+
}
|
|
11560
|
+
}
|
|
11561
|
+
}
|
|
11562
|
+
},
|
|
11292
11563
|
"per_page": {
|
|
11293
11564
|
"description": "The numbers of items to return",
|
|
11294
11565
|
"type": "integer",
|
|
@@ -12554,6 +12825,107 @@
|
|
|
12554
12825
|
}
|
|
12555
12826
|
}
|
|
12556
12827
|
},
|
|
12828
|
+
{
|
|
12829
|
+
"path": "/public-api/resources/consents/v1.0",
|
|
12830
|
+
"method": "GET",
|
|
12831
|
+
"operationId": "consentsListing",
|
|
12832
|
+
"summary": "Consents / Listing",
|
|
12833
|
+
"description": "Retrieve consent data for users",
|
|
12834
|
+
"tags": [
|
|
12835
|
+
"resource / consents"
|
|
12836
|
+
],
|
|
12837
|
+
"parameters": {
|
|
12838
|
+
"query": {
|
|
12839
|
+
"filter": {
|
|
12840
|
+
"schema": {
|
|
12841
|
+
"type": "object",
|
|
12842
|
+
"properties": {
|
|
12843
|
+
"userId": {
|
|
12844
|
+
"type": "array",
|
|
12845
|
+
"items": {
|
|
12846
|
+
"type": "integer"
|
|
12847
|
+
},
|
|
12848
|
+
"description": "Filter consents by specific user IDs"
|
|
12849
|
+
},
|
|
12850
|
+
"termType": {
|
|
12851
|
+
"type": "array",
|
|
12852
|
+
"items": {
|
|
12853
|
+
"type": "string",
|
|
12854
|
+
"enum": [
|
|
12855
|
+
"marketing",
|
|
12856
|
+
"signup",
|
|
12857
|
+
"subscription",
|
|
12858
|
+
"top-up"
|
|
12859
|
+
]
|
|
12860
|
+
},
|
|
12861
|
+
"description": "Filter by term types: - marketing: Marketing and promotional communications consent - signup: Initial registration terms and conditions - subscription: Subscription service terms - top-up: Top-up service terms"
|
|
12862
|
+
},
|
|
12863
|
+
"status": {
|
|
12864
|
+
"type": "array",
|
|
12865
|
+
"items": {
|
|
12866
|
+
"type": "string",
|
|
12867
|
+
"enum": [
|
|
12868
|
+
"agreed",
|
|
12869
|
+
"rejected"
|
|
12870
|
+
]
|
|
12871
|
+
},
|
|
12872
|
+
"description": "Filter by consent statuses: - agreed: User has agreed to the terms - rejected: User has explicitly rejected the terms"
|
|
12873
|
+
},
|
|
12874
|
+
"agreedAfter": {
|
|
12875
|
+
"type": "string",
|
|
12876
|
+
"format": "date-time",
|
|
12877
|
+
"description": "Filter consents agreed after this date (ISO 8601 formatted date)"
|
|
12878
|
+
},
|
|
12879
|
+
"agreedBefore": {
|
|
12880
|
+
"type": "string",
|
|
12881
|
+
"format": "date-time",
|
|
12882
|
+
"description": "Filter consents agreed before this date (ISO 8601 formatted date)"
|
|
12883
|
+
},
|
|
12884
|
+
"rejectedAfter": {
|
|
12885
|
+
"type": "string",
|
|
12886
|
+
"format": "date-time",
|
|
12887
|
+
"description": "Filter consents rejected after this date (ISO 8601 formatted date)"
|
|
12888
|
+
},
|
|
12889
|
+
"rejectedBefore": {
|
|
12890
|
+
"type": "string",
|
|
12891
|
+
"format": "date-time",
|
|
12892
|
+
"description": "Filter consents rejected before this date (ISO 8601 formatted date)"
|
|
12893
|
+
}
|
|
12894
|
+
}
|
|
12895
|
+
}
|
|
12896
|
+
},
|
|
12897
|
+
"page": {
|
|
12898
|
+
"description": "The page number to fetch (defaults to 1)",
|
|
12899
|
+
"type": "integer",
|
|
12900
|
+
"default": 1
|
|
12901
|
+
},
|
|
12902
|
+
"per_page": {
|
|
12903
|
+
"description": "The numbers of items to return",
|
|
12904
|
+
"type": "integer",
|
|
12905
|
+
"minimum": 1,
|
|
12906
|
+
"maximum": 100,
|
|
12907
|
+
"default": 100
|
|
12908
|
+
}
|
|
12909
|
+
}
|
|
12910
|
+
},
|
|
12911
|
+
"responses": {
|
|
12912
|
+
"200": {
|
|
12913
|
+
"description": "Success"
|
|
12914
|
+
},
|
|
12915
|
+
"401": {
|
|
12916
|
+
"description": "Access token is missing or invalid"
|
|
12917
|
+
},
|
|
12918
|
+
"403": {
|
|
12919
|
+
"description": "You do not have permission to perform the action"
|
|
12920
|
+
},
|
|
12921
|
+
"422": {
|
|
12922
|
+
"description": "The payload you provided is invalid"
|
|
12923
|
+
},
|
|
12924
|
+
"429": {
|
|
12925
|
+
"description": "Too many requests. Please try again later. For more information, please check the rate limit headers X-RateLimit-*"
|
|
12926
|
+
}
|
|
12927
|
+
}
|
|
12928
|
+
},
|
|
12557
12929
|
{
|
|
12558
12930
|
"path": "/public-api/resources/contact-details/v2.0",
|
|
12559
12931
|
"method": "GET",
|
|
@@ -20904,22 +21276,11 @@
|
|
|
20904
21276
|
"id": {
|
|
20905
21277
|
"type": "integer"
|
|
20906
21278
|
},
|
|
20907
|
-
"
|
|
20908
|
-
"type": "
|
|
20909
|
-
"
|
|
20910
|
-
"type": "object",
|
|
20911
|
-
"properties": {
|
|
20912
|
-
"locale": {
|
|
20913
|
-
"type": "string",
|
|
20914
|
-
"description": "valid locale"
|
|
20915
|
-
},
|
|
20916
|
-
"translation": {
|
|
20917
|
-
"type": "string"
|
|
20918
|
-
}
|
|
20919
|
-
}
|
|
20920
|
-
}
|
|
21279
|
+
"externalId": {
|
|
21280
|
+
"type": "string",
|
|
21281
|
+
"nullable": true
|
|
20921
21282
|
},
|
|
20922
|
-
"
|
|
21283
|
+
"name": {
|
|
20923
21284
|
"type": "array",
|
|
20924
21285
|
"items": {
|
|
20925
21286
|
"type": "object",
|
|
@@ -20949,7 +21310,7 @@
|
|
|
20949
21310
|
}
|
|
20950
21311
|
}
|
|
20951
21312
|
},
|
|
20952
|
-
"
|
|
21313
|
+
"shortDescription": {
|
|
20953
21314
|
"type": "array",
|
|
20954
21315
|
"items": {
|
|
20955
21316
|
"type": "object",
|
|
@@ -20964,49 +21325,20 @@
|
|
|
20964
21325
|
}
|
|
20965
21326
|
}
|
|
20966
21327
|
},
|
|
20967
|
-
"
|
|
20968
|
-
"type": "object",
|
|
20969
|
-
"properties": {
|
|
20970
|
-
"original": {
|
|
20971
|
-
"type": "string",
|
|
20972
|
-
"description": "URL to the original image"
|
|
20973
|
-
},
|
|
20974
|
-
"thumbnail": {
|
|
20975
|
-
"type": "string",
|
|
20976
|
-
"description": "URL to a thumbnail image"
|
|
20977
|
-
},
|
|
20978
|
-
"mimeType": {
|
|
20979
|
-
"type": "string"
|
|
20980
|
-
}
|
|
20981
|
-
},
|
|
20982
|
-
"required": [
|
|
20983
|
-
"original",
|
|
20984
|
-
"mimeType"
|
|
20985
|
-
]
|
|
20986
|
-
},
|
|
20987
|
-
"images": {
|
|
21328
|
+
"additionalDescription": {
|
|
20988
21329
|
"type": "array",
|
|
20989
21330
|
"items": {
|
|
20990
21331
|
"type": "object",
|
|
20991
21332
|
"properties": {
|
|
20992
|
-
"
|
|
20993
|
-
"type": "string",
|
|
20994
|
-
"description": "URL to the original image"
|
|
20995
|
-
},
|
|
20996
|
-
"thumbnail": {
|
|
21333
|
+
"locale": {
|
|
20997
21334
|
"type": "string",
|
|
20998
|
-
"description": "
|
|
21335
|
+
"description": "valid locale"
|
|
20999
21336
|
},
|
|
21000
|
-
"
|
|
21337
|
+
"translation": {
|
|
21001
21338
|
"type": "string"
|
|
21002
21339
|
}
|
|
21003
|
-
}
|
|
21004
|
-
|
|
21005
|
-
"original",
|
|
21006
|
-
"mimeType"
|
|
21007
|
-
]
|
|
21008
|
-
},
|
|
21009
|
-
"description": "If `include[]=images` is provided with the request, this array will contain the properties of all images assigned to the location."
|
|
21340
|
+
}
|
|
21341
|
+
}
|
|
21010
21342
|
},
|
|
21011
21343
|
"geoposition": {
|
|
21012
21344
|
"type": "object",
|
|
@@ -21498,6 +21830,118 @@
|
|
|
21498
21830
|
"type": "string",
|
|
21499
21831
|
"nullable": true
|
|
21500
21832
|
},
|
|
21833
|
+
"timezone": {
|
|
21834
|
+
"type": "string",
|
|
21835
|
+
"nullable": true,
|
|
21836
|
+
"description": "A valid timezone in the form of Area/Location, required when `Allow Multiple Time Zones` option is turned on in the Timezone Setting."
|
|
21837
|
+
},
|
|
21838
|
+
"parkingType": {
|
|
21839
|
+
"type": "string",
|
|
21840
|
+
"enum": [
|
|
21841
|
+
"ALONG_MOTORWAY",
|
|
21842
|
+
"PARKING_GARAGE",
|
|
21843
|
+
"PARKING_LOT",
|
|
21844
|
+
"ON_DRIVEWAY",
|
|
21845
|
+
"ON_STREET",
|
|
21846
|
+
"UNDERGROUND_GARAGE"
|
|
21847
|
+
],
|
|
21848
|
+
"nullable": true,
|
|
21849
|
+
"description": "Indicates the type of parking available at the charging location. This field helps EV drivers understand the physical parking environment before arrival. **Valid values:** - `ALONG_MOTORWAY` - Located along a motorway/highway, typically at rest areas or service stations - `PARKING_GARAGE` - Multi-level parking garage structure, either above-ground or mixed-use - `PARKING_LOT` - Surface parking lot, open-air parking area - `ON_DRIVEWAY` - Located on a private driveway, typically residential or small business - `ON_STREET` - Street-side parking, curbside charging locations - `UNDERGROUND_GARAGE` - Underground parking structure, subterranean parking facility **Request behavior (POST/PATCH):** - Optional field when creating or updating locations - Send `null` to clear the parking type - Omit the field in PATCH requests to leave the existing value unchanged **Response behavior (GET):** - Field is omitted from the response when no parking type is configured (null in database) - When present, returns one of the valid enum values listed above"
|
|
21850
|
+
},
|
|
21851
|
+
"accessMethods": {
|
|
21852
|
+
"type": "array",
|
|
21853
|
+
"items": {
|
|
21854
|
+
"type": "string",
|
|
21855
|
+
"enum": [
|
|
21856
|
+
"OPEN",
|
|
21857
|
+
"TOKEN",
|
|
21858
|
+
"LICENSE_PLATE",
|
|
21859
|
+
"ACCESS_CODE",
|
|
21860
|
+
"INTERCOM",
|
|
21861
|
+
"PARKING_TICKET"
|
|
21862
|
+
]
|
|
21863
|
+
},
|
|
21864
|
+
"example": [
|
|
21865
|
+
"OPEN",
|
|
21866
|
+
"TOKEN"
|
|
21867
|
+
],
|
|
21868
|
+
"nullable": true,
|
|
21869
|
+
"description": "Physical access methods available at this location. Multiple methods can be selected if the site supports different access types. **Request behavior (POST/PATCH):** - Optional field when creating or updating locations - Send `null` to clear all access methods - Send `[]` to store an empty access methods list - Duplicate values are automatically de-duplicated before storage - Omit the field in PATCH requests to leave the existing value unchanged **Response behavior (GET):** - Field is omitted from the response when no access methods are configured (null in database) - When access methods are configured but the array is empty, returns an empty array `[]` - When present, returns an array of valid enum values listed above **Available methods:** - `OPEN` - Publicly accessible without restrictions - `TOKEN` - Access via RFID token or card - `LICENSE_PLATE` - Access via license plate recognition - `ACCESS_CODE` - Access via PIN/access code entry - `INTERCOM` - Access via intercom system - `PARKING_TICKET` - Access via parking ticket validation"
|
|
21870
|
+
},
|
|
21871
|
+
"facilities": {
|
|
21872
|
+
"type": "array",
|
|
21873
|
+
"items": {
|
|
21874
|
+
"type": "string",
|
|
21875
|
+
"enum": [
|
|
21876
|
+
"AIRPORT",
|
|
21877
|
+
"BIKE_SHARING",
|
|
21878
|
+
"BUS_STOP",
|
|
21879
|
+
"CAFE",
|
|
21880
|
+
"CARPOOL_PARKING",
|
|
21881
|
+
"FUEL_STATION",
|
|
21882
|
+
"HOTEL",
|
|
21883
|
+
"MALL",
|
|
21884
|
+
"METRO_STATION",
|
|
21885
|
+
"MUSEUM",
|
|
21886
|
+
"NATURE",
|
|
21887
|
+
"PARKING_LOT",
|
|
21888
|
+
"RECREATION_AREA",
|
|
21889
|
+
"RESTAURANT",
|
|
21890
|
+
"SPORT",
|
|
21891
|
+
"SUPERMARKET",
|
|
21892
|
+
"TAXI_STAND",
|
|
21893
|
+
"TRAIN_STATION",
|
|
21894
|
+
"TRAM_STOP",
|
|
21895
|
+
"WIFI"
|
|
21896
|
+
]
|
|
21897
|
+
},
|
|
21898
|
+
"nullable": true,
|
|
21899
|
+
"description": "Describes amenities and facilities available at or near the charging location. Most values are self-explanatory. Special categories include: - `RECREATION_AREA` - Parks, playgrounds, or leisure facilities - `CARPOOL_PARKING` - Dedicated parking for carpooling/ridesharing - `NATURE` - Natural attractions or green spaces **Request behavior (POST/PATCH):** - Optional field when creating or updating locations - Send `null` to clear all facilities - Send `[]` to store an empty facilities list - Duplicate values are automatically de-duplicated before storage - Omit the field in PATCH requests to leave the existing value unchanged **Response behavior (GET):** - Field is omitted from the response when no facilities are configured (null in database) - When facilities are configured but the array is empty, returns an empty array `[]` - When present, returns an array of valid enum values listed above"
|
|
21900
|
+
},
|
|
21901
|
+
"locationImage": {
|
|
21902
|
+
"type": "object",
|
|
21903
|
+
"properties": {
|
|
21904
|
+
"original": {
|
|
21905
|
+
"type": "string",
|
|
21906
|
+
"description": "URL to the original image"
|
|
21907
|
+
},
|
|
21908
|
+
"thumbnail": {
|
|
21909
|
+
"type": "string",
|
|
21910
|
+
"description": "URL to a thumbnail image"
|
|
21911
|
+
},
|
|
21912
|
+
"mimeType": {
|
|
21913
|
+
"type": "string"
|
|
21914
|
+
}
|
|
21915
|
+
},
|
|
21916
|
+
"required": [
|
|
21917
|
+
"original",
|
|
21918
|
+
"mimeType"
|
|
21919
|
+
]
|
|
21920
|
+
},
|
|
21921
|
+
"images": {
|
|
21922
|
+
"type": "array",
|
|
21923
|
+
"items": {
|
|
21924
|
+
"type": "object",
|
|
21925
|
+
"properties": {
|
|
21926
|
+
"original": {
|
|
21927
|
+
"type": "string",
|
|
21928
|
+
"description": "URL to the original image"
|
|
21929
|
+
},
|
|
21930
|
+
"thumbnail": {
|
|
21931
|
+
"type": "string",
|
|
21932
|
+
"description": "URL to a thumbnail image"
|
|
21933
|
+
},
|
|
21934
|
+
"mimeType": {
|
|
21935
|
+
"type": "string"
|
|
21936
|
+
}
|
|
21937
|
+
},
|
|
21938
|
+
"required": [
|
|
21939
|
+
"original",
|
|
21940
|
+
"mimeType"
|
|
21941
|
+
]
|
|
21942
|
+
},
|
|
21943
|
+
"description": "If `include[]=images` is provided with the request, this array will contain the properties of all images assigned to the location."
|
|
21944
|
+
},
|
|
21501
21945
|
"workingHours": {
|
|
21502
21946
|
"type": "object",
|
|
21503
21947
|
"properties": {
|
|
@@ -21692,24 +22136,6 @@
|
|
|
21692
22136
|
}
|
|
21693
22137
|
}
|
|
21694
22138
|
},
|
|
21695
|
-
"timezone": {
|
|
21696
|
-
"type": "string",
|
|
21697
|
-
"nullable": true,
|
|
21698
|
-
"description": "A valid timezone in the form of Area/Location, required when `Allow Multiple Time Zones` option is turned on in the Timezone Setting."
|
|
21699
|
-
},
|
|
21700
|
-
"externalId": {
|
|
21701
|
-
"type": "string",
|
|
21702
|
-
"nullable": true
|
|
21703
|
-
},
|
|
21704
|
-
"roamingOperatorId": {
|
|
21705
|
-
"type": "integer",
|
|
21706
|
-
"description": "For roaming Locations, the ID of the roaming operator is provided."
|
|
21707
|
-
},
|
|
21708
|
-
"lastUpdatedAt": {
|
|
21709
|
-
"type": "string",
|
|
21710
|
-
"format": "date-time",
|
|
21711
|
-
"description": "ISO 8601 formatted date"
|
|
21712
|
-
},
|
|
21713
22139
|
"chargingZones": {
|
|
21714
22140
|
"type": "array",
|
|
21715
22141
|
"items": {
|
|
@@ -21776,11 +22202,9 @@
|
|
|
21776
22202
|
},
|
|
21777
22203
|
"description": "If `include[]=chargingZones` is provided with the request, the location charging zones will be provided here."
|
|
21778
22204
|
},
|
|
21779
|
-
"
|
|
21780
|
-
"type": "
|
|
21781
|
-
"
|
|
21782
|
-
"nullable": true,
|
|
21783
|
-
"description": "Used to hold any external application data related to the session."
|
|
22205
|
+
"roamingOperatorId": {
|
|
22206
|
+
"type": "integer",
|
|
22207
|
+
"description": "For roaming Locations, the ID of the roaming operator is provided."
|
|
21784
22208
|
},
|
|
21785
22209
|
"roaming": {
|
|
21786
22210
|
"type": "object",
|
|
@@ -21820,6 +22244,17 @@
|
|
|
21820
22244
|
"items": {
|
|
21821
22245
|
"type": "string"
|
|
21822
22246
|
}
|
|
22247
|
+
},
|
|
22248
|
+
"externalAppData": {
|
|
22249
|
+
"type": "object",
|
|
22250
|
+
"additionalProperties": true,
|
|
22251
|
+
"nullable": true,
|
|
22252
|
+
"description": "Used to hold any external application data related to the session."
|
|
22253
|
+
},
|
|
22254
|
+
"lastUpdatedAt": {
|
|
22255
|
+
"type": "string",
|
|
22256
|
+
"format": "date-time",
|
|
22257
|
+
"description": "ISO 8601 formatted date"
|
|
21823
22258
|
}
|
|
21824
22259
|
},
|
|
21825
22260
|
"required": [
|
|
@@ -21926,6 +22361,10 @@
|
|
|
21926
22361
|
"id": {
|
|
21927
22362
|
"type": "integer"
|
|
21928
22363
|
},
|
|
22364
|
+
"externalId": {
|
|
22365
|
+
"type": "string",
|
|
22366
|
+
"nullable": true
|
|
22367
|
+
},
|
|
21929
22368
|
"name": {
|
|
21930
22369
|
"type": "array",
|
|
21931
22370
|
"items": {
|
|
@@ -21941,7 +22380,7 @@
|
|
|
21941
22380
|
}
|
|
21942
22381
|
}
|
|
21943
22382
|
},
|
|
21944
|
-
"
|
|
22383
|
+
"description": {
|
|
21945
22384
|
"type": "array",
|
|
21946
22385
|
"items": {
|
|
21947
22386
|
"type": "object",
|
|
@@ -21956,7 +22395,7 @@
|
|
|
21956
22395
|
}
|
|
21957
22396
|
}
|
|
21958
22397
|
},
|
|
21959
|
-
"
|
|
22398
|
+
"shortDescription": {
|
|
21960
22399
|
"type": "array",
|
|
21961
22400
|
"items": {
|
|
21962
22401
|
"type": "object",
|
|
@@ -21986,50 +22425,6 @@
|
|
|
21986
22425
|
}
|
|
21987
22426
|
}
|
|
21988
22427
|
},
|
|
21989
|
-
"locationImage": {
|
|
21990
|
-
"type": "object",
|
|
21991
|
-
"properties": {
|
|
21992
|
-
"original": {
|
|
21993
|
-
"type": "string",
|
|
21994
|
-
"description": "URL to the original image"
|
|
21995
|
-
},
|
|
21996
|
-
"thumbnail": {
|
|
21997
|
-
"type": "string",
|
|
21998
|
-
"description": "URL to a thumbnail image"
|
|
21999
|
-
},
|
|
22000
|
-
"mimeType": {
|
|
22001
|
-
"type": "string"
|
|
22002
|
-
}
|
|
22003
|
-
},
|
|
22004
|
-
"required": [
|
|
22005
|
-
"original",
|
|
22006
|
-
"mimeType"
|
|
22007
|
-
]
|
|
22008
|
-
},
|
|
22009
|
-
"images": {
|
|
22010
|
-
"type": "array",
|
|
22011
|
-
"items": {
|
|
22012
|
-
"type": "object",
|
|
22013
|
-
"properties": {
|
|
22014
|
-
"original": {
|
|
22015
|
-
"type": "string",
|
|
22016
|
-
"description": "URL to the original image"
|
|
22017
|
-
},
|
|
22018
|
-
"thumbnail": {
|
|
22019
|
-
"type": "string",
|
|
22020
|
-
"description": "URL to a thumbnail image"
|
|
22021
|
-
},
|
|
22022
|
-
"mimeType": {
|
|
22023
|
-
"type": "string"
|
|
22024
|
-
}
|
|
22025
|
-
},
|
|
22026
|
-
"required": [
|
|
22027
|
-
"original",
|
|
22028
|
-
"mimeType"
|
|
22029
|
-
]
|
|
22030
|
-
},
|
|
22031
|
-
"description": "If `include[]=images` is provided with the request, this array will contain the properties of all images assigned to the location."
|
|
22032
|
-
},
|
|
22033
22428
|
"geoposition": {
|
|
22034
22429
|
"type": "object",
|
|
22035
22430
|
"properties": {
|
|
@@ -22520,6 +22915,118 @@
|
|
|
22520
22915
|
"type": "string",
|
|
22521
22916
|
"nullable": true
|
|
22522
22917
|
},
|
|
22918
|
+
"timezone": {
|
|
22919
|
+
"type": "string",
|
|
22920
|
+
"nullable": true,
|
|
22921
|
+
"description": "A valid timezone in the form of Area/Location, required when `Allow Multiple Time Zones` option is turned on in the Timezone Setting."
|
|
22922
|
+
},
|
|
22923
|
+
"parkingType": {
|
|
22924
|
+
"type": "string",
|
|
22925
|
+
"enum": [
|
|
22926
|
+
"ALONG_MOTORWAY",
|
|
22927
|
+
"PARKING_GARAGE",
|
|
22928
|
+
"PARKING_LOT",
|
|
22929
|
+
"ON_DRIVEWAY",
|
|
22930
|
+
"ON_STREET",
|
|
22931
|
+
"UNDERGROUND_GARAGE"
|
|
22932
|
+
],
|
|
22933
|
+
"nullable": true,
|
|
22934
|
+
"description": "Indicates the type of parking available at the charging location. This field helps EV drivers understand the physical parking environment before arrival. **Valid values:** - `ALONG_MOTORWAY` - Located along a motorway/highway, typically at rest areas or service stations - `PARKING_GARAGE` - Multi-level parking garage structure, either above-ground or mixed-use - `PARKING_LOT` - Surface parking lot, open-air parking area - `ON_DRIVEWAY` - Located on a private driveway, typically residential or small business - `ON_STREET` - Street-side parking, curbside charging locations - `UNDERGROUND_GARAGE` - Underground parking structure, subterranean parking facility **Request behavior (POST/PATCH):** - Optional field when creating or updating locations - Send `null` to clear the parking type - Omit the field in PATCH requests to leave the existing value unchanged **Response behavior (GET):** - Field is omitted from the response when no parking type is configured (null in database) - When present, returns one of the valid enum values listed above"
|
|
22935
|
+
},
|
|
22936
|
+
"accessMethods": {
|
|
22937
|
+
"type": "array",
|
|
22938
|
+
"items": {
|
|
22939
|
+
"type": "string",
|
|
22940
|
+
"enum": [
|
|
22941
|
+
"OPEN",
|
|
22942
|
+
"TOKEN",
|
|
22943
|
+
"LICENSE_PLATE",
|
|
22944
|
+
"ACCESS_CODE",
|
|
22945
|
+
"INTERCOM",
|
|
22946
|
+
"PARKING_TICKET"
|
|
22947
|
+
]
|
|
22948
|
+
},
|
|
22949
|
+
"example": [
|
|
22950
|
+
"OPEN",
|
|
22951
|
+
"TOKEN"
|
|
22952
|
+
],
|
|
22953
|
+
"nullable": true,
|
|
22954
|
+
"description": "Physical access methods available at this location. Multiple methods can be selected if the site supports different access types. **Request behavior (POST/PATCH):** - Optional field when creating or updating locations - Send `null` to clear all access methods - Send `[]` to store an empty access methods list - Duplicate values are automatically de-duplicated before storage - Omit the field in PATCH requests to leave the existing value unchanged **Response behavior (GET):** - Field is omitted from the response when no access methods are configured (null in database) - When access methods are configured but the array is empty, returns an empty array `[]` - When present, returns an array of valid enum values listed above **Available methods:** - `OPEN` - Publicly accessible without restrictions - `TOKEN` - Access via RFID token or card - `LICENSE_PLATE` - Access via license plate recognition - `ACCESS_CODE` - Access via PIN/access code entry - `INTERCOM` - Access via intercom system - `PARKING_TICKET` - Access via parking ticket validation"
|
|
22955
|
+
},
|
|
22956
|
+
"facilities": {
|
|
22957
|
+
"type": "array",
|
|
22958
|
+
"items": {
|
|
22959
|
+
"type": "string",
|
|
22960
|
+
"enum": [
|
|
22961
|
+
"AIRPORT",
|
|
22962
|
+
"BIKE_SHARING",
|
|
22963
|
+
"BUS_STOP",
|
|
22964
|
+
"CAFE",
|
|
22965
|
+
"CARPOOL_PARKING",
|
|
22966
|
+
"FUEL_STATION",
|
|
22967
|
+
"HOTEL",
|
|
22968
|
+
"MALL",
|
|
22969
|
+
"METRO_STATION",
|
|
22970
|
+
"MUSEUM",
|
|
22971
|
+
"NATURE",
|
|
22972
|
+
"PARKING_LOT",
|
|
22973
|
+
"RECREATION_AREA",
|
|
22974
|
+
"RESTAURANT",
|
|
22975
|
+
"SPORT",
|
|
22976
|
+
"SUPERMARKET",
|
|
22977
|
+
"TAXI_STAND",
|
|
22978
|
+
"TRAIN_STATION",
|
|
22979
|
+
"TRAM_STOP",
|
|
22980
|
+
"WIFI"
|
|
22981
|
+
]
|
|
22982
|
+
},
|
|
22983
|
+
"nullable": true,
|
|
22984
|
+
"description": "Describes amenities and facilities available at or near the charging location. Most values are self-explanatory. Special categories include: - `RECREATION_AREA` - Parks, playgrounds, or leisure facilities - `CARPOOL_PARKING` - Dedicated parking for carpooling/ridesharing - `NATURE` - Natural attractions or green spaces **Request behavior (POST/PATCH):** - Optional field when creating or updating locations - Send `null` to clear all facilities - Send `[]` to store an empty facilities list - Duplicate values are automatically de-duplicated before storage - Omit the field in PATCH requests to leave the existing value unchanged **Response behavior (GET):** - Field is omitted from the response when no facilities are configured (null in database) - When facilities are configured but the array is empty, returns an empty array `[]` - When present, returns an array of valid enum values listed above"
|
|
22985
|
+
},
|
|
22986
|
+
"locationImage": {
|
|
22987
|
+
"type": "object",
|
|
22988
|
+
"properties": {
|
|
22989
|
+
"original": {
|
|
22990
|
+
"type": "string",
|
|
22991
|
+
"description": "URL to the original image"
|
|
22992
|
+
},
|
|
22993
|
+
"thumbnail": {
|
|
22994
|
+
"type": "string",
|
|
22995
|
+
"description": "URL to a thumbnail image"
|
|
22996
|
+
},
|
|
22997
|
+
"mimeType": {
|
|
22998
|
+
"type": "string"
|
|
22999
|
+
}
|
|
23000
|
+
},
|
|
23001
|
+
"required": [
|
|
23002
|
+
"original",
|
|
23003
|
+
"mimeType"
|
|
23004
|
+
]
|
|
23005
|
+
},
|
|
23006
|
+
"images": {
|
|
23007
|
+
"type": "array",
|
|
23008
|
+
"items": {
|
|
23009
|
+
"type": "object",
|
|
23010
|
+
"properties": {
|
|
23011
|
+
"original": {
|
|
23012
|
+
"type": "string",
|
|
23013
|
+
"description": "URL to the original image"
|
|
23014
|
+
},
|
|
23015
|
+
"thumbnail": {
|
|
23016
|
+
"type": "string",
|
|
23017
|
+
"description": "URL to a thumbnail image"
|
|
23018
|
+
},
|
|
23019
|
+
"mimeType": {
|
|
23020
|
+
"type": "string"
|
|
23021
|
+
}
|
|
23022
|
+
},
|
|
23023
|
+
"required": [
|
|
23024
|
+
"original",
|
|
23025
|
+
"mimeType"
|
|
23026
|
+
]
|
|
23027
|
+
},
|
|
23028
|
+
"description": "If `include[]=images` is provided with the request, this array will contain the properties of all images assigned to the location."
|
|
23029
|
+
},
|
|
22523
23030
|
"workingHours": {
|
|
22524
23031
|
"type": "object",
|
|
22525
23032
|
"properties": {
|
|
@@ -22714,24 +23221,6 @@
|
|
|
22714
23221
|
}
|
|
22715
23222
|
}
|
|
22716
23223
|
},
|
|
22717
|
-
"timezone": {
|
|
22718
|
-
"type": "string",
|
|
22719
|
-
"nullable": true,
|
|
22720
|
-
"description": "A valid timezone in the form of Area/Location, required when `Allow Multiple Time Zones` option is turned on in the Timezone Setting."
|
|
22721
|
-
},
|
|
22722
|
-
"externalId": {
|
|
22723
|
-
"type": "string",
|
|
22724
|
-
"nullable": true
|
|
22725
|
-
},
|
|
22726
|
-
"roamingOperatorId": {
|
|
22727
|
-
"type": "integer",
|
|
22728
|
-
"description": "For roaming Locations, the ID of the roaming operator is provided."
|
|
22729
|
-
},
|
|
22730
|
-
"lastUpdatedAt": {
|
|
22731
|
-
"type": "string",
|
|
22732
|
-
"format": "date-time",
|
|
22733
|
-
"description": "ISO 8601 formatted date"
|
|
22734
|
-
},
|
|
22735
23224
|
"chargingZones": {
|
|
22736
23225
|
"type": "array",
|
|
22737
23226
|
"items": {
|
|
@@ -22798,11 +23287,9 @@
|
|
|
22798
23287
|
},
|
|
22799
23288
|
"description": "If `include[]=chargingZones` is provided with the request, the location charging zones will be provided here."
|
|
22800
23289
|
},
|
|
22801
|
-
"
|
|
22802
|
-
"type": "
|
|
22803
|
-
"
|
|
22804
|
-
"nullable": true,
|
|
22805
|
-
"description": "Used to hold any external application data related to the session."
|
|
23290
|
+
"roamingOperatorId": {
|
|
23291
|
+
"type": "integer",
|
|
23292
|
+
"description": "For roaming Locations, the ID of the roaming operator is provided."
|
|
22806
23293
|
},
|
|
22807
23294
|
"roaming": {
|
|
22808
23295
|
"type": "object",
|
|
@@ -22842,6 +23329,17 @@
|
|
|
22842
23329
|
"items": {
|
|
22843
23330
|
"type": "string"
|
|
22844
23331
|
}
|
|
23332
|
+
},
|
|
23333
|
+
"externalAppData": {
|
|
23334
|
+
"type": "object",
|
|
23335
|
+
"additionalProperties": true,
|
|
23336
|
+
"nullable": true,
|
|
23337
|
+
"description": "Used to hold any external application data related to the session."
|
|
23338
|
+
},
|
|
23339
|
+
"lastUpdatedAt": {
|
|
23340
|
+
"type": "string",
|
|
23341
|
+
"format": "date-time",
|
|
23342
|
+
"description": "ISO 8601 formatted date"
|
|
22845
23343
|
}
|
|
22846
23344
|
}
|
|
22847
23345
|
}
|
|
@@ -27228,6 +27726,9 @@
|
|
|
27228
27726
|
"404": {
|
|
27229
27727
|
"description": "The record is not found"
|
|
27230
27728
|
},
|
|
27729
|
+
"409": {
|
|
27730
|
+
"description": "Conflict"
|
|
27731
|
+
},
|
|
27231
27732
|
"422": {
|
|
27232
27733
|
"description": "The payload you provided is invalid"
|
|
27233
27734
|
},
|
|
@@ -28028,7 +28529,8 @@
|
|
|
28028
28529
|
"Windcave",
|
|
28029
28530
|
"Web portal",
|
|
28030
28531
|
"AdyenCastles",
|
|
28031
|
-
"Printec Castles"
|
|
28532
|
+
"Printec Castles",
|
|
28533
|
+
"Cardlink Castles"
|
|
28032
28534
|
]
|
|
28033
28535
|
},
|
|
28034
28536
|
"chargingZoneId": {
|
|
@@ -28124,7 +28626,8 @@
|
|
|
28124
28626
|
"Windcave",
|
|
28125
28627
|
"Web portal",
|
|
28126
28628
|
"AdyenCastles",
|
|
28127
|
-
"Printec Castles"
|
|
28629
|
+
"Printec Castles",
|
|
28630
|
+
"Cardlink Castles"
|
|
28128
28631
|
]
|
|
28129
28632
|
},
|
|
28130
28633
|
"operatorId": {
|
|
@@ -28253,7 +28756,8 @@
|
|
|
28253
28756
|
"Windcave",
|
|
28254
28757
|
"Web portal",
|
|
28255
28758
|
"AdyenCastles",
|
|
28256
|
-
"Printec Castles"
|
|
28759
|
+
"Printec Castles",
|
|
28760
|
+
"Cardlink Castles"
|
|
28257
28761
|
]
|
|
28258
28762
|
},
|
|
28259
28763
|
"operatorId": {
|
|
@@ -28307,7 +28811,8 @@
|
|
|
28307
28811
|
"Windcave",
|
|
28308
28812
|
"Web portal",
|
|
28309
28813
|
"AdyenCastles",
|
|
28310
|
-
"Printec Castles"
|
|
28814
|
+
"Printec Castles",
|
|
28815
|
+
"Cardlink Castles"
|
|
28311
28816
|
]
|
|
28312
28817
|
},
|
|
28313
28818
|
"operatorId": {
|
|
@@ -28367,7 +28872,8 @@
|
|
|
28367
28872
|
"Windcave",
|
|
28368
28873
|
"Web portal",
|
|
28369
28874
|
"AdyenCastles",
|
|
28370
|
-
"Printec Castles"
|
|
28875
|
+
"Printec Castles",
|
|
28876
|
+
"Cardlink Castles"
|
|
28371
28877
|
]
|
|
28372
28878
|
},
|
|
28373
28879
|
"operatorId": {
|
|
@@ -28425,7 +28931,8 @@
|
|
|
28425
28931
|
"Windcave",
|
|
28426
28932
|
"Web portal",
|
|
28427
28933
|
"AdyenCastles",
|
|
28428
|
-
"Printec Castles"
|
|
28934
|
+
"Printec Castles",
|
|
28935
|
+
"Cardlink Castles"
|
|
28429
28936
|
]
|
|
28430
28937
|
},
|
|
28431
28938
|
"operatorId": {
|
|
@@ -28478,7 +28985,8 @@
|
|
|
28478
28985
|
"Windcave",
|
|
28479
28986
|
"Web portal",
|
|
28480
28987
|
"AdyenCastles",
|
|
28481
|
-
"Printec Castles"
|
|
28988
|
+
"Printec Castles",
|
|
28989
|
+
"Cardlink Castles"
|
|
28482
28990
|
]
|
|
28483
28991
|
},
|
|
28484
28992
|
"operatorId": {
|
|
@@ -28559,7 +29067,8 @@
|
|
|
28559
29067
|
"Windcave",
|
|
28560
29068
|
"Web portal",
|
|
28561
29069
|
"AdyenCastles",
|
|
28562
|
-
"Printec Castles"
|
|
29070
|
+
"Printec Castles",
|
|
29071
|
+
"Cardlink Castles"
|
|
28563
29072
|
]
|
|
28564
29073
|
},
|
|
28565
29074
|
"operatorId": {
|
|
@@ -28612,7 +29121,8 @@
|
|
|
28612
29121
|
"Windcave",
|
|
28613
29122
|
"Web portal",
|
|
28614
29123
|
"AdyenCastles",
|
|
28615
|
-
"Printec Castles"
|
|
29124
|
+
"Printec Castles",
|
|
29125
|
+
"Cardlink Castles"
|
|
28616
29126
|
]
|
|
28617
29127
|
},
|
|
28618
29128
|
"operatorId": {
|
|
@@ -28681,7 +29191,8 @@
|
|
|
28681
29191
|
"Windcave",
|
|
28682
29192
|
"Web portal",
|
|
28683
29193
|
"AdyenCastles",
|
|
28684
|
-
"Printec Castles"
|
|
29194
|
+
"Printec Castles",
|
|
29195
|
+
"Cardlink Castles"
|
|
28685
29196
|
]
|
|
28686
29197
|
},
|
|
28687
29198
|
"operatorId": {
|
|
@@ -28797,7 +29308,8 @@
|
|
|
28797
29308
|
"Windcave",
|
|
28798
29309
|
"Web portal",
|
|
28799
29310
|
"AdyenCastles",
|
|
28800
|
-
"Printec Castles"
|
|
29311
|
+
"Printec Castles",
|
|
29312
|
+
"Cardlink Castles"
|
|
28801
29313
|
]
|
|
28802
29314
|
},
|
|
28803
29315
|
"operatorId": {
|
|
@@ -28900,6 +29412,136 @@
|
|
|
28900
29412
|
"terminalType",
|
|
28901
29413
|
"operatorId"
|
|
28902
29414
|
]
|
|
29415
|
+
},
|
|
29416
|
+
{
|
|
29417
|
+
"type": "object",
|
|
29418
|
+
"properties": {
|
|
29419
|
+
"id": {
|
|
29420
|
+
"type": "integer"
|
|
29421
|
+
},
|
|
29422
|
+
"name": {
|
|
29423
|
+
"type": "string"
|
|
29424
|
+
},
|
|
29425
|
+
"integrationId": {
|
|
29426
|
+
"type": "integer"
|
|
29427
|
+
},
|
|
29428
|
+
"terminalType": {
|
|
29429
|
+
"type": "string",
|
|
29430
|
+
"enum": [
|
|
29431
|
+
"Payter",
|
|
29432
|
+
"Valina",
|
|
29433
|
+
"Crane",
|
|
29434
|
+
"Ampeco",
|
|
29435
|
+
"Nayax",
|
|
29436
|
+
"Embedded",
|
|
29437
|
+
"Pax",
|
|
29438
|
+
"Windcave",
|
|
29439
|
+
"Web portal",
|
|
29440
|
+
"AdyenCastles",
|
|
29441
|
+
"Printec Castles",
|
|
29442
|
+
"Cardlink Castles"
|
|
29443
|
+
]
|
|
29444
|
+
},
|
|
29445
|
+
"operatorId": {
|
|
29446
|
+
"type": "integer"
|
|
29447
|
+
},
|
|
29448
|
+
"chargingZoneId": {
|
|
29449
|
+
"type": "integer",
|
|
29450
|
+
"description": "The charging zone the terminal belongs to. Note that either the `chargePointId` OR this attribute should be provided;"
|
|
29451
|
+
},
|
|
29452
|
+
"chargePointId": {
|
|
29453
|
+
"type": "integer",
|
|
29454
|
+
"description": "The Charge point the terminal belongs to. Note that either the `chargingZoneId` OR this attribute should be provided;"
|
|
29455
|
+
},
|
|
29456
|
+
"adminToken": {
|
|
29457
|
+
"type": "string",
|
|
29458
|
+
"description": "Specific token, linked to each terminal that can be used for access to the API. The token is created automatically when a new payment terminal is created."
|
|
29459
|
+
},
|
|
29460
|
+
"isOnline": {
|
|
29461
|
+
"type": "boolean",
|
|
29462
|
+
"description": "Use `networkStatus` instead"
|
|
29463
|
+
},
|
|
29464
|
+
"networkStatus": {
|
|
29465
|
+
"type": "string",
|
|
29466
|
+
"enum": [
|
|
29467
|
+
"online",
|
|
29468
|
+
"offline",
|
|
29469
|
+
"unknown"
|
|
29470
|
+
]
|
|
29471
|
+
},
|
|
29472
|
+
"phone": {
|
|
29473
|
+
"type": "string"
|
|
29474
|
+
},
|
|
29475
|
+
"defaultLanguage": {
|
|
29476
|
+
"type": "string"
|
|
29477
|
+
},
|
|
29478
|
+
"presentCardOnStopSession": {
|
|
29479
|
+
"type": "boolean",
|
|
29480
|
+
"default": false
|
|
29481
|
+
},
|
|
29482
|
+
"info": {
|
|
29483
|
+
"type": "array",
|
|
29484
|
+
"items": {
|
|
29485
|
+
"type": "object",
|
|
29486
|
+
"properties": {
|
|
29487
|
+
"locale": {
|
|
29488
|
+
"type": "string",
|
|
29489
|
+
"description": "valid locale"
|
|
29490
|
+
},
|
|
29491
|
+
"translation": {
|
|
29492
|
+
"type": "string"
|
|
29493
|
+
}
|
|
29494
|
+
}
|
|
29495
|
+
}
|
|
29496
|
+
},
|
|
29497
|
+
"currencyCode": {
|
|
29498
|
+
"type": "string"
|
|
29499
|
+
},
|
|
29500
|
+
"serialNumber": {
|
|
29501
|
+
"type": "string"
|
|
29502
|
+
},
|
|
29503
|
+
"externalId": {
|
|
29504
|
+
"type": "string"
|
|
29505
|
+
},
|
|
29506
|
+
"supportedLanguages": {
|
|
29507
|
+
"type": "array",
|
|
29508
|
+
"items": {
|
|
29509
|
+
"type": "string"
|
|
29510
|
+
},
|
|
29511
|
+
"nullable": true
|
|
29512
|
+
},
|
|
29513
|
+
"bundle": {
|
|
29514
|
+
"type": "object",
|
|
29515
|
+
"properties": {
|
|
29516
|
+
"version": {
|
|
29517
|
+
"type": "string",
|
|
29518
|
+
"example": [
|
|
29519
|
+
"1.0.0",
|
|
29520
|
+
"1.0.1",
|
|
29521
|
+
"2.1.0"
|
|
29522
|
+
],
|
|
29523
|
+
"description": "Desired version of the terminal android bundle. This field should be used to detect version difference between the actual one running on the terminal and the configured on the server, in order to detect if an OTA update is required."
|
|
29524
|
+
},
|
|
29525
|
+
"downloadUrl": {
|
|
29526
|
+
"type": "string",
|
|
29527
|
+
"description": "Download link to the archived (zip) bundle version. Can be used to download the bundle and initiate the OTA update on the terminal."
|
|
29528
|
+
}
|
|
29529
|
+
}
|
|
29530
|
+
},
|
|
29531
|
+
"networkStatusMonitoringEnabled": {
|
|
29532
|
+
"type": "boolean"
|
|
29533
|
+
}
|
|
29534
|
+
},
|
|
29535
|
+
"required": [
|
|
29536
|
+
"phone",
|
|
29537
|
+
"defaultLanguage",
|
|
29538
|
+
"info",
|
|
29539
|
+
"bundle",
|
|
29540
|
+
"name",
|
|
29541
|
+
"integrationId",
|
|
29542
|
+
"terminalType",
|
|
29543
|
+
"operatorId"
|
|
29544
|
+
]
|
|
28903
29545
|
}
|
|
28904
29546
|
]
|
|
28905
29547
|
}
|
|
@@ -29018,7 +29660,8 @@
|
|
|
29018
29660
|
"Windcave",
|
|
29019
29661
|
"Web portal",
|
|
29020
29662
|
"AdyenCastles",
|
|
29021
|
-
"Printec Castles"
|
|
29663
|
+
"Printec Castles",
|
|
29664
|
+
"Cardlink Castles"
|
|
29022
29665
|
]
|
|
29023
29666
|
},
|
|
29024
29667
|
"operatorId": {
|
|
@@ -29100,7 +29743,8 @@
|
|
|
29100
29743
|
"Windcave",
|
|
29101
29744
|
"Web portal",
|
|
29102
29745
|
"AdyenCastles",
|
|
29103
|
-
"Printec Castles"
|
|
29746
|
+
"Printec Castles",
|
|
29747
|
+
"Cardlink Castles"
|
|
29104
29748
|
]
|
|
29105
29749
|
},
|
|
29106
29750
|
"operatorId": {
|
|
@@ -29195,7 +29839,8 @@
|
|
|
29195
29839
|
"Windcave",
|
|
29196
29840
|
"Web portal",
|
|
29197
29841
|
"AdyenCastles",
|
|
29198
|
-
"Printec Castles"
|
|
29842
|
+
"Printec Castles",
|
|
29843
|
+
"Cardlink Castles"
|
|
29199
29844
|
]
|
|
29200
29845
|
},
|
|
29201
29846
|
"operatorId": {
|
|
@@ -29242,7 +29887,8 @@
|
|
|
29242
29887
|
"Windcave",
|
|
29243
29888
|
"Web portal",
|
|
29244
29889
|
"AdyenCastles",
|
|
29245
|
-
"Printec Castles"
|
|
29890
|
+
"Printec Castles",
|
|
29891
|
+
"Cardlink Castles"
|
|
29246
29892
|
]
|
|
29247
29893
|
},
|
|
29248
29894
|
"operatorId": {
|
|
@@ -29296,7 +29942,8 @@
|
|
|
29296
29942
|
"Windcave",
|
|
29297
29943
|
"Web portal",
|
|
29298
29944
|
"AdyenCastles",
|
|
29299
|
-
"Printec Castles"
|
|
29945
|
+
"Printec Castles",
|
|
29946
|
+
"Cardlink Castles"
|
|
29300
29947
|
]
|
|
29301
29948
|
},
|
|
29302
29949
|
"operatorId": {
|
|
@@ -29347,7 +29994,8 @@
|
|
|
29347
29994
|
"Windcave",
|
|
29348
29995
|
"Web portal",
|
|
29349
29996
|
"AdyenCastles",
|
|
29350
|
-
"Printec Castles"
|
|
29997
|
+
"Printec Castles",
|
|
29998
|
+
"Cardlink Castles"
|
|
29351
29999
|
]
|
|
29352
30000
|
},
|
|
29353
30001
|
"operatorId": {
|
|
@@ -29394,7 +30042,8 @@
|
|
|
29394
30042
|
"Windcave",
|
|
29395
30043
|
"Web portal",
|
|
29396
30044
|
"AdyenCastles",
|
|
29397
|
-
"Printec Castles"
|
|
30045
|
+
"Printec Castles",
|
|
30046
|
+
"Cardlink Castles"
|
|
29398
30047
|
]
|
|
29399
30048
|
},
|
|
29400
30049
|
"operatorId": {
|
|
@@ -29466,7 +30115,8 @@
|
|
|
29466
30115
|
"Windcave",
|
|
29467
30116
|
"Web portal",
|
|
29468
30117
|
"AdyenCastles",
|
|
29469
|
-
"Printec Castles"
|
|
30118
|
+
"Printec Castles",
|
|
30119
|
+
"Cardlink Castles"
|
|
29470
30120
|
]
|
|
29471
30121
|
},
|
|
29472
30122
|
"operatorId": {
|
|
@@ -29513,7 +30163,8 @@
|
|
|
29513
30163
|
"Windcave",
|
|
29514
30164
|
"Web portal",
|
|
29515
30165
|
"AdyenCastles",
|
|
29516
|
-
"Printec Castles"
|
|
30166
|
+
"Printec Castles",
|
|
30167
|
+
"Cardlink Castles"
|
|
29517
30168
|
]
|
|
29518
30169
|
},
|
|
29519
30170
|
"operatorId": {
|
|
@@ -29546,7 +30197,8 @@
|
|
|
29546
30197
|
"Windcave",
|
|
29547
30198
|
"Web portal",
|
|
29548
30199
|
"AdyenCastles",
|
|
29549
|
-
"Printec Castles"
|
|
30200
|
+
"Printec Castles",
|
|
30201
|
+
"Cardlink Castles"
|
|
29550
30202
|
]
|
|
29551
30203
|
},
|
|
29552
30204
|
"operatorId": {
|
|
@@ -29647,7 +30299,8 @@
|
|
|
29647
30299
|
"Windcave",
|
|
29648
30300
|
"Web portal",
|
|
29649
30301
|
"AdyenCastles",
|
|
29650
|
-
"Printec Castles"
|
|
30302
|
+
"Printec Castles",
|
|
30303
|
+
"Cardlink Castles"
|
|
29651
30304
|
]
|
|
29652
30305
|
},
|
|
29653
30306
|
"operatorId": {
|
|
@@ -29714,6 +30367,102 @@
|
|
|
29714
30367
|
"type": "boolean"
|
|
29715
30368
|
}
|
|
29716
30369
|
}
|
|
30370
|
+
},
|
|
30371
|
+
{
|
|
30372
|
+
"type": "object",
|
|
30373
|
+
"properties": {
|
|
30374
|
+
"id": {
|
|
30375
|
+
"type": "integer"
|
|
30376
|
+
},
|
|
30377
|
+
"name": {
|
|
30378
|
+
"type": "string"
|
|
30379
|
+
},
|
|
30380
|
+
"integrationId": {
|
|
30381
|
+
"type": "integer"
|
|
30382
|
+
},
|
|
30383
|
+
"terminalType": {
|
|
30384
|
+
"type": "string",
|
|
30385
|
+
"enum": [
|
|
30386
|
+
"Payter",
|
|
30387
|
+
"Valina",
|
|
30388
|
+
"Crane",
|
|
30389
|
+
"Ampeco",
|
|
30390
|
+
"Nayax",
|
|
30391
|
+
"Embedded",
|
|
30392
|
+
"Pax",
|
|
30393
|
+
"Windcave",
|
|
30394
|
+
"Web portal",
|
|
30395
|
+
"AdyenCastles",
|
|
30396
|
+
"Printec Castles",
|
|
30397
|
+
"Cardlink Castles"
|
|
30398
|
+
]
|
|
30399
|
+
},
|
|
30400
|
+
"operatorId": {
|
|
30401
|
+
"type": "integer"
|
|
30402
|
+
},
|
|
30403
|
+
"chargingZoneId": {
|
|
30404
|
+
"type": "integer",
|
|
30405
|
+
"description": "The charging zone the terminal belongs to. Note that either the `chargePointId` OR this attribute should be provided;"
|
|
30406
|
+
},
|
|
30407
|
+
"chargePointId": {
|
|
30408
|
+
"type": "integer",
|
|
30409
|
+
"description": "The Charge point the terminal belongs to. Note that either the `chargingZoneId` OR this attribute should be provided;"
|
|
30410
|
+
},
|
|
30411
|
+
"adminToken": {
|
|
30412
|
+
"type": "string",
|
|
30413
|
+
"description": "Specific token, linked to each terminal that can be used for access to the API. The token is created automatically when a new payment terminal is created."
|
|
30414
|
+
},
|
|
30415
|
+
"isOnline": {
|
|
30416
|
+
"type": "boolean",
|
|
30417
|
+
"description": "Use `networkStatus` instead"
|
|
30418
|
+
},
|
|
30419
|
+
"networkStatus": {
|
|
30420
|
+
"type": "string",
|
|
30421
|
+
"enum": [
|
|
30422
|
+
"online",
|
|
30423
|
+
"offline",
|
|
30424
|
+
"unknown"
|
|
30425
|
+
]
|
|
30426
|
+
},
|
|
30427
|
+
"phone": {
|
|
30428
|
+
"type": "string"
|
|
30429
|
+
},
|
|
30430
|
+
"defaultLanguage": {
|
|
30431
|
+
"type": "string"
|
|
30432
|
+
},
|
|
30433
|
+
"presentCardOnStopSession": {
|
|
30434
|
+
"type": "boolean",
|
|
30435
|
+
"default": false
|
|
30436
|
+
},
|
|
30437
|
+
"info": {
|
|
30438
|
+
"type": "array",
|
|
30439
|
+
"items": {
|
|
30440
|
+
"type": "object",
|
|
30441
|
+
"properties": {
|
|
30442
|
+
"locale": {
|
|
30443
|
+
"type": "string",
|
|
30444
|
+
"description": "valid locale"
|
|
30445
|
+
},
|
|
30446
|
+
"translation": {
|
|
30447
|
+
"type": "string"
|
|
30448
|
+
}
|
|
30449
|
+
}
|
|
30450
|
+
}
|
|
30451
|
+
},
|
|
30452
|
+
"serialNumber": {
|
|
30453
|
+
"type": "string"
|
|
30454
|
+
},
|
|
30455
|
+
"externalId": {
|
|
30456
|
+
"type": "string"
|
|
30457
|
+
},
|
|
30458
|
+
"supportedLanguages": {
|
|
30459
|
+
"type": "array",
|
|
30460
|
+
"items": {
|
|
30461
|
+
"type": "string"
|
|
30462
|
+
},
|
|
30463
|
+
"nullable": true
|
|
30464
|
+
}
|
|
30465
|
+
}
|
|
29717
30466
|
}
|
|
29718
30467
|
]
|
|
29719
30468
|
}
|
|
@@ -40933,7 +41682,7 @@
|
|
|
40933
41682
|
],
|
|
40934
41683
|
"info": {
|
|
40935
41684
|
"title": "AMPECO.CHARGE Public API",
|
|
40936
|
-
"version": "3.
|
|
41685
|
+
"version": "3.105.6",
|
|
40937
41686
|
"description": "AMPECO.CHARGE Public API provides you with the option to use AMPECO.CHARGE's backend in a server-to-server manner\n"
|
|
40938
41687
|
},
|
|
40939
41688
|
"servers": [
|
|
@@ -40947,18 +41696,18 @@
|
|
|
40947
41696
|
}
|
|
40948
41697
|
}
|
|
40949
41698
|
],
|
|
40950
|
-
"buildTimestamp": "2025-
|
|
41699
|
+
"buildTimestamp": "2025-12-01T14:30:32.764Z",
|
|
40951
41700
|
"stats": {
|
|
40952
|
-
"totalEndpoints":
|
|
40953
|
-
"originalSize":
|
|
40954
|
-
"optimizedSize":
|
|
40955
|
-
"reductionPercent": 70.
|
|
40956
|
-
"buildDuration":
|
|
41701
|
+
"totalEndpoints": 447,
|
|
41702
|
+
"originalSize": 2673598,
|
|
41703
|
+
"optimizedSize": 782602,
|
|
41704
|
+
"reductionPercent": 70.73,
|
|
41705
|
+
"buildDuration": 633,
|
|
40957
41706
|
"responseSchemas": {
|
|
40958
|
-
"total":
|
|
40959
|
-
"withSchemas":
|
|
40960
|
-
"totalSchemaSize":
|
|
40961
|
-
"averageSchemaSize":
|
|
41707
|
+
"total": 447,
|
|
41708
|
+
"withSchemas": 447,
|
|
41709
|
+
"totalSchemaSize": 1484727,
|
|
41710
|
+
"averageSchemaSize": 3322
|
|
40962
41711
|
}
|
|
40963
41712
|
}
|
|
40964
41713
|
}
|