diff options
author | John Estabrook <jestabro@vyos.io> | 2025-05-28 17:29:59 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2025-05-28 17:29:59 -0500 |
commit | 24fdb086d81c63aa2ff47e1b17804e068ea75be6 (patch) | |
tree | f768b2e3b91c5fb7041af562efa81c494235673a | |
parent | 86a282ecd049ce4aa25e5fd7b776423f96d7ce9c (diff) | |
download | vyos-documentation-24fdb086d81c63aa2ff47e1b17804e068ea75be6.tar.gz vyos-documentation-24fdb086d81c63aa2ff47e1b17804e068ea75be6.zip |
T7498: add example of merge and of passing config in body of request
-rw-r--r-- | docs/automation/vyos-api.rst | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/automation/vyos-api.rst b/docs/automation/vyos-api.rst index a9518a00..0955cca1 100644 --- a/docs/automation/vyos-api.rst +++ b/docs/automation/vyos-api.rst @@ -517,3 +517,34 @@ To Load a configuration file. "data": null, "error": null } + +To Merge a configuration file. + +.. code-block:: none + + curl -k --location --request POST 'https://vyos/config-file' \ + --form data='{"op": "merge", "file": "/config/test.config"}' \ + --form key='MY-HTTPS-API-PLAINTEXT-KEY' + + response: + { + "success": true, + "data": null, + "error": null + } + +In either of the last two cases, one can pass a string in the body of the +request, for example: + +.. code-block:: none + + curl -k --location --request POST 'https://vyos/config-file' \ + --form data='{"op": "merge", "string": "interfaces {\nethernet eth1 {\naddress "192.168.2.137/24"\ndescription "test"\n}\n}\n"}' \ + --form key='MY-HTTPS-API-PLAINTEXT-KEY' + + response: + { + "success": true, + "data": null, + "error": null + } |