From 7c076171603340fa5c9b5e2d2b522a2447558e77 Mon Sep 17 00:00:00 2001 From: Eric Stern Date: Mon, 22 Jul 2024 13:33:18 -0700 Subject: [PATCH] Update credential creation endpoint --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index eaa3d31..8c9e34d 100644 --- a/src/Client.php +++ b/src/Client.php @@ -90,7 +90,7 @@ public function verifyAuthToken(string $authToken): AuthResponse public function attachRegistration(string $regToken, array $user): Credential { return $this->makeApiCall( - route: '/registration/attach', + route: '/credential/create', data: [ 'token' => $regToken, 'user' => $user,