From 7ef7ab259d616a0e2f1062e4731372f7a01721b1 Mon Sep 17 00:00:00 2001 From: Vivian McCarty Date: Tue, 16 Dec 2025 13:37:13 -0600 Subject: [PATCH] docs: edited uris Ticket: TW-161 --- src/masterBitgoExpress/routers/healthCheck.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/masterBitgoExpress/routers/healthCheck.ts b/src/masterBitgoExpress/routers/healthCheck.ts index fb464a6..3857dff 100644 --- a/src/masterBitgoExpress/routers/healthCheck.ts +++ b/src/masterBitgoExpress/routers/healthCheck.ts @@ -25,7 +25,7 @@ const VersionResponse: HttpResponse = { */ const PingRoute = httpRoute({ method: 'POST', - path: '/ping', + path: '/advancedwallet/ping', request: httpRequest({}), response: PingResponse, description: 'Health check endpoint that returns server status', @@ -41,7 +41,7 @@ const PingRoute = httpRoute({ */ const VersionRoute = httpRoute({ method: 'GET', - path: '/version', + path: '/advancedwallet/version', request: httpRequest({}), response: VersionResponse, description: 'Returns the current version of the server',