diff options
author | Roberto Berto <roberto.berto@gmail.com> | 2020-04-30 21:58:50 -0300 |
---|---|---|
committer | Roberto Berto <roberto.berto@gmail.com> | 2020-04-30 21:58:50 -0300 |
commit | 9df6cf90acbd74290330f1fa0a8b16b059426b5d (patch) | |
tree | 6f4049aa55700fd1b959b88bacf8ef874218e0ce /docs | |
parent | 44ca885b409a2f0b709521b0ff85cf9b4a32b5c4 (diff) | |
download | vyos-documentation-9df6cf90acbd74290330f1fa0a8b16b059426b5d.tar.gz vyos-documentation-9df6cf90acbd74290330f1fa0a8b16b059426b5d.zip |
fixed pre formatting
Diffstat (limited to 'docs')
-rw-r--r-- | docs/appendix/http-api.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/appendix/http-api.rst b/docs/appendix/http-api.rst index fe990269..945a2518 100644 --- a/docs/appendix/http-api.rst +++ b/docs/appendix/http-api.rst @@ -76,9 +76,14 @@ Reading config To retrieve raw configs: +.. code-block:: none + # curl -X POST -F data='{"op": "showConfig", "path": ["interfaces", "dummy"]}' -F key=MY-HTTP-API-PLAINTEXT-KEY https://192.168.122.127/retrieve It will returns: + +.. code-block:: none + {"success": true, "data": " /* So very dummy */\n dummy dum0 {\n address 192.168.168.1/32\n address 192.168.168.2/32\n /* That is a description */\n description \"Test interface\"\n }\n dummy dum1 {\n address 203.0.113.76/32\n address 203.0.113.79/32\n }\n", "error": null} |