Skip to content

PKI Logout REST API

Endi S. Dewata edited this page Aug 17, 2021 · 3 revisions

Request

  • Method: GET

  • Path: /<subsystem>/rest/account/logout

  • Authentication: Not required

  • Content: None

  • Success code: 204

Source

Examples

CA

JSON
$ curl \
  -k \
  -s \
  --user caadmin:Secret.123 \
  https://localhost.localdomain:8443/ca/rest/account/logout

KRA

JSON
$ curl \
  -k \
  -s \
  --user kraadmin:Secret.123 \
  https://localhost.localdomain:8443/kra/rest/account/logout

OCSP

JSON
$ curl \
  -k \
  -s \
  --user ocspadmin:Secret.123 \
  https://localhost.localdomain:8443/ocsp/rest/account/logout

TKS

JSON
$ curl \
  -k \
  -s \
  --user tksadmin:Secret.123 \
  https://localhost.localdomain:8443/tks/rest/account/logout

TPS

JSON
$ curl \
  -k \
  -s \
  --user tpsadmin:Secret.123 \
  https://localhost.localdomain:8443/tps/rest/account/logout

See also

The ACME subsystem has a different logout process documented here.

Clone this wiki locally