From 4aa3c10466554cc5100cb5f2dfd9b532c38d9194 Mon Sep 17 00:00:00 2001 From: mahan Date: Wed, 15 Oct 2025 11:57:12 +0330 Subject: [PATCH] feat: update API endpoint for bank inquiries in UidService --- CompanyManagment.EFCore/Services/UidService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CompanyManagment.EFCore/Services/UidService.cs b/CompanyManagment.EFCore/Services/UidService.cs index e05023f4..cc078ee1 100644 --- a/CompanyManagment.EFCore/Services/UidService.cs +++ b/CompanyManagment.EFCore/Services/UidService.cs @@ -142,7 +142,7 @@ public class UidService : IUidService var json = JsonConvert.SerializeObject(request); var contentType = new StringContent(json, Encoding.UTF8, "application/json"); - var requestResult = await _httpClient.PostAsync("mobile/owner/v2", contentType); + var requestResult = await _httpClient.PostAsync("inquiry/mobile/owner/v2", contentType); if (!requestResult.IsSuccessStatusCode) return null;