diff --git a/upload-processor/BulkFileUploadFunctionApp/Services/ProcStatClient.cs b/upload-processor/BulkFileUploadFunctionApp/Services/ProcStatClient.cs index c868d2df6..7737f9b9f 100644 --- a/upload-processor/BulkFileUploadFunctionApp/Services/ProcStatClient.cs +++ b/upload-processor/BulkFileUploadFunctionApp/Services/ProcStatClient.cs @@ -51,7 +51,7 @@ public async Task CreateReport(string uploadId, string destinatio try { var content = new StringContent(JsonSerializer.Serialize(payload), Encoding.UTF8, "application/json"); - var response = await _httpClient.PostAsync($"/api/report/uploadId/{uploadId}?destinationId={destinationId}&eventType={eventType}&stageName={stageName}", content); + var response = await _httpClient.PostAsync($"/api/report/json/uploadId/{uploadId}?destinationId={destinationId}&eventType={eventType}&stageName={stageName}", content); response.EnsureSuccessStatusCode(); } catch (Exception ex) {