PKI Logout REST API - dogtagpki/pki GitHub Wiki

Request

  • Method: GET

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

  • Authentication: Not required

  • Content: None

  • Success code: 204

Source

AccountService.logout()

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.

⚠️ **GitHub.com Fallback** ⚠️