Skip to content

Commit a7e8e7e

Browse files
committed
🐛 Fix typo in advertierId parameter.
1 parent fa30c8c commit a7e8e7e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Api/RetailMetrics.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function lookup(string $advertiserId, RetailMetricsRequestBuilder $builde
1919
{
2020
return $this->_post(
2121
'/service/retail-metrics/4.1/vehicle',
22-
['advertiseId' => $advertiserId],
22+
['advertiserId' => $advertiserId],
2323
$builder->toJson()
2424
);
2525
}

src/Api/Valuations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function value(string $advertiserId, ValuationRequestBuilder $builder)
2020
{
2121
return $this->_post(
2222
'/service/stock-management/valuations',
23-
['advertiseId' => $advertiserId],
23+
['advertiserId' => $advertiserId],
2424
$builder->toJson()
2525
);
2626
}

src/Api/VehicleMetrics.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function lookup(string $advertiserId, MetricRequestBuilder $builder)
2020
{
2121
return $this->_post(
2222
'/service/stock-management/vehicleMetrics',
23-
['advertiseId' => $advertiserId],
23+
['advertiserId' => $advertiserId],
2424
$builder->toJson()
2525
);
2626
}

0 commit comments

Comments
 (0)