Add display full parameter to PrestashopClient API query

This commit is contained in:
Vincent Guillet
2025-11-25 19:55:23 +01:00
parent 61e164732c
commit 4a16aa715f

View File

@@ -36,7 +36,8 @@ public class PrestashopClient {
.fromHttpUrl(baseUrl)
.path("/api")
.path(path)
.queryParam("output_format", "JSON");
.queryParam("output_format", "JSON")
.queryParam("display", "full");
String url = builder.build(true).toUriString();