diff --git a/backend/src/services/External/HitphoneServices/ClientExists.ts b/backend/src/services/External/HitphoneServices/ClientExists.ts index 9332ac6..8971a96 100644 --- a/backend/src/services/External/HitphoneServices/ClientExists.ts +++ b/backend/src/services/External/HitphoneServices/ClientExists.ts @@ -19,7 +19,7 @@ const clientExistsCache = cache(CLIENT_EXISTS_CACHE_TTL); export const clientExists = async (id: string): Promise => { const fetcher = async (id: string) => { - const response = await fetchWithKey(`/clients/${id}`, { method: "HEAD" }); + const response = await fetchWithKey(`/tenants/${id}`, { method: "HEAD" }); await responseOk(response);