-
Notifications
You must be signed in to change notification settings - Fork 148
ACME Get Directory REST API
Endi S. Dewata edited this page Jan 2, 2022
·
3 revisions
This operation returns the ACME directory as defined in RFC 8555 Section 7.1.1.
-
URL:
/acme/directory -
Method:
GET -
Authentication: Not required
-
Authorization: Not required
-
Code:
200 -
Content:
{
"meta": {
"caaIdentities": [
...
],
"externalAccountRequired": ...,
"termsOfService": ...,
"website": ...
},
"newAccount": ...,
"newNonce": ...,
"newOrder": ...,
"revokeCert": ...
}
$ curl \
-s \
https://pki.demo.dogtagpki.org/acme/directory | python -m json.tool
{
"newNonce": "https://pki.demo.dogtagpki.org/acme/new-nonce",
"newAccount": "https://pki.demo.dogtagpki.org/acme/new-account",
"newOrder": "https://pki.demo.dogtagpki.org/acme/new-order",
"revokeCert": "https://pki.demo.dogtagpki.org/acme/revoke-cert",
"meta": {
"termsOfService": "https://github.com/dogtagpki/pki/wiki/ACME-Responder-Demo",
"website": "https://www.dogtagpki.org",
"caaIdentities": [
"dogtagpki.org"
],
"externalAccountRequired": false
}
}
|
Tip
|
To find a page in the Wiki, enter the keywords in search field, press Enter, then click Wikis. |