diff options
author | Roberto Bertó <roberto.berto@gmail.com> | 2024-03-10 12:42:31 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-10 12:42:31 -0300 |
commit | 95878ef8c96e276a8bc09b0326878a654ce2ee58 (patch) | |
tree | ae6fe96cedca2ab2a48f4387cc3aaecc71cb0285 /docs/automation/vyos-api.rst | |
parent | 0993a91255cad0dd893b7a60e05fd2120a343407 (diff) | |
parent | 8d410c0843f7d8b88a5a20ccb778ae149c6fc098 (diff) | |
download | vyos-documentation-95878ef8c96e276a8bc09b0326878a654ce2ee58.tar.gz vyos-documentation-95878ef8c96e276a8bc09b0326878a654ce2ee58.zip |
Merge pull request #2 from vyos/master
import 2024-03
Diffstat (limited to 'docs/automation/vyos-api.rst')
-rw-r--r-- | docs/automation/vyos-api.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/automation/vyos-api.rst b/docs/automation/vyos-api.rst index afcc1767..8fad05ca 100644 --- a/docs/automation/vyos-api.rst +++ b/docs/automation/vyos-api.rst @@ -250,13 +250,14 @@ The ``generate`` endpoint run a ``generate`` command. .. code-block:: none curl -k --location --request POST 'https://vyos/generate' \ - --form data='{"op": "generate", "path": ["wireguard", "default-keypair"]}' \ + --form data='{"op": "generate", "path": ["pki", "wireguard", "key-pair"]}' \ --form key='MY-HTTPS-API-PLAINTEXT-KEY' response: { "success": true, - "data": "", + "data": "Private key: CFZR2eyhoVZwk4n3JFPMJx3E145f1EYgDM+ubytXYVY=\n + Public key: jjtpPT8ycI1Q0bNtrWuxAkO4k88Xwzg5VHV9xGZ58lU=\n\n", "error": null } |