From cdcf5339d2d088c539d0d2f437362febfc534046 Mon Sep 17 00:00:00 2001 From: Tarjei Skrede Date: Wed, 5 Mar 2025 12:38:30 +0100 Subject: [PATCH] Fixed example in REST system configuration section --- .../systems/configuration-systems-rest.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hub/documentation/service-configuration/systems/configuration-systems-rest.rst b/hub/documentation/service-configuration/systems/configuration-systems-rest.rst index 184794e8db..cfee4d50c8 100644 --- a/hub/documentation/service-configuration/systems/configuration-systems-rest.rst +++ b/hub/documentation/service-configuration/systems/configuration-systems-rest.rst @@ -35,7 +35,7 @@ Prototype "read_timeout": 1800, "rate_limiting_retries": 3, "rate_limiting_delay": 60, - "json_content_types": ["application/jsonish"] + "json_content_types": ["application/jsonish"], "headers": { "MY_HEADER": "some-value", "MY_OTHER_HEADER": "$ENV(key-for-other-value)", @@ -45,10 +45,10 @@ Prototype "get-operation": { "url" : "/a/service/that/supports/get/{{ _id }}", "method": "GET", - "next_page_link": {{ body.pagination.next }}, - "next_page_termination_strategy": ["next-page-link-empty", "same-next-page-request", "same-response"] - "id_expression": {{ id }}, - "updated_expression": {{ updated }}, + "next_page_link": "{{ body.pagination.next }}", + "next_page_termination_strategy": ["next-page-link-empty", "same-next-page-request", "same-response"], + "id_expression": "{{ id }}", + "updated_expression": "{{ updated }}", "payload_property": "result", "response_property": "response", "since_property_name": "updated",