Welcome to the new Golem Cloud Docs! 👋
Documentation
API Certificate

Api Certificate API

Gets one or all certificates for a given project

PathMethodProtected
/v1/api/certificatesGETYes

If certificate-id is not set, it returns all certificates associated with the project. If certificate-id is set, it returns a single certificate if it exists.

Query Parameters

NameTypeRequiredDescription
project-idstringYes-
certificate-idstringNo-

Example Response JSON

[
  {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8",
    "domainName": "string"
  }
]

Creates a new certificate

PathMethodProtected
/v1/api/certificatesPOSTYes

A certificate is associated with a given Golem project and domain, and consists of a key pair.

The created certificate will be associated with a certificate ID returned by this endpoint.

Example Request JSON

{
  "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8",
  "domainName": "string",
  "certificateBody": "string",
  "certificatePrivateKey": "string"
}

Example Response JSON

{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8",
  "domainName": "string"
}

Deletes a certificate

PathMethodProtected
/v1/api/certificatesDELETEYes

Deletes the certificate associated with the given certificate ID and project ID.

Query Parameters

NameTypeRequiredDescription
project-idstringYes-
certificate-idstringYes-

Example Response JSON

"string"

Api Certificate API Errors

Status CodeDescriptionBody
400{"type":"Messages","errors":["string"]}
401{"error":"string"}
403{"error":"string"}
404{"message":"string"}
409"string"
500{"error":"string"}