From 3e50adcd4d97b8bc0a80ed2b2fcad04e3daa2d2e Mon Sep 17 00:00:00 2001 From: sherif-olaboye <123654949+sherif-olaboye@users.noreply.github.com> Date: Tue, 7 Oct 2025 12:38:23 +0100 Subject: [PATCH] TD-5636 Resolved not found error from the end point --- .../ApiClients/LearningHubApiClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DigitalLearningSolutions.Data/ApiClients/LearningHubApiClient.cs b/DigitalLearningSolutions.Data/ApiClients/LearningHubApiClient.cs index 6616954ef6..2faf24ae7e 100644 --- a/DigitalLearningSolutions.Data/ApiClients/LearningHubApiClient.cs +++ b/DigitalLearningSolutions.Data/ApiClients/LearningHubApiClient.cs @@ -88,7 +88,7 @@ IEnumerable resourceReferenceIds public async Task GetCatalogues() { - var response = await GetStringAsync("/Catalogues"); + var response = await GetStringAsync("/Catalogue"); var result = JsonConvert.DeserializeObject(response); return result; }