Skip to content

Commit

Permalink
Merge pull request #25 from atschabu/fixLocationPatch
Browse files Browse the repository at this point in the history
  • Loading branch information
lilgallon authored Dec 1, 2023
2 parents 486a2f3 + 634ec68 commit b23f82c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class LocationsCpoClient(
send(
HttpRequest(
method = HttpMethod.PATCH,
path = "/$countryCode/$partyId/$locationId",
path = "/$countryCode/$partyId/$locationId/$evseUid",
body = mapper.writeValueAsString(evse)
)
.withRequiredHeaders(
Expand All @@ -208,7 +208,7 @@ class LocationsCpoClient(
send(
HttpRequest(
method = HttpMethod.PATCH,
path = "/$countryCode/$partyId/$locationId",
path = "/$countryCode/$partyId/$locationId/$evseUid/$connectorId",
body = mapper.writeValueAsString(connector)
)
.withRequiredHeaders(
Expand Down

0 comments on commit b23f82c

Please sign in to comment.