Skip to content

Commit

Permalink
Removed legacy /kyc prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
velser committed Aug 27, 2020
1 parent 63efa89 commit f00547c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/KycApiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function startSession(StartSessionRequest $startSessionRequest): StartSes
try {
$response = $this->client->request(
'POST',
'/kyc/identifications/start',
'/identifications/start',
[
'json' => $startSessionMapper->mapFromEntity($startSessionRequest),
'headers' => ['x-api-key' => $this->apiKey]
Expand All @@ -61,7 +61,7 @@ public function getData(string $identificationId)
try {
$response = $this->client->request(
'GET',
'/kyc/identifications/' . $identificationId . '/data',
'/identifications/' . $identificationId . '/data',
[
'headers' => ['x-api-key' => $this->apiKey]
]
Expand Down

0 comments on commit f00547c

Please sign in to comment.