Peeringhub.io Stir Shaken CA Service
  • Peeringhub STI-ACME Server
  • Guides
    • Stir/Shaken Compliance Guide
    • Q and A on STI Test Plan
      • STI-PA-TC-026
      • STI-PA-TC-021
      • STI-PA-TC-019
      • STI-PA-TC-024
      • STI-PA-TC-022
      • STI-PA-TC-025
    • Purchase Subscription
    • Generating Certificate
      • Web UI
        • Renew Stir/Shaken Certificate
      • ACME protocol reference
        • Protocol Overview
        • List server directory
        • Get nonce
        • Account creation & Authorization
        • Get ACME account status
        • Order a new certificate
        • List active orders
        • Key change
        • Account deactivation
      • Desktop Client
      • Windows Command Line Client
      • Linux Command Line Client
    • Staging Environment Support
      • Configuring ACME Client
    • Getting Support
    • Troubleshoot
    • Verify a Stir/Shaken Certificate
    • Peeringhub STI-API
      • Generate Auth Token
      • Generate Private Key
      • Extract Your Private Key
      • Generate Stir/Shaken Certifiate
    • FAQ
Powered by GitBook
On this page
  1. Guides
  2. Generating Certificate
  3. ACME protocol reference

List server directory

To get the list of functions, supported by the server, and their URL, ACME client must send a GET request to the ACME server base URL:

GET https://stica.peeringhub.io/acme

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 247
{
  "newNonce" : "https://stica.peeringhub.io/acme/new-nonce",
  "newAccount" : "https://stica.peeringhub.io/acme/new-account",
  "newOrder" : "https://stica.peeringhub.io/acme/new-order",
  "keyChange" : "https://stica.peeringhub.io/acme/key-change"
}

List of the supported functions and their URLs are not standard, and may change over time. Requests below in this document must be sent to the corresponding URL from the received list.

PreviousProtocol OverviewNextGet nonce

Last updated 2 years ago