OBJECT

Csr

Description

Certificate Signing Request (CSR) information.

link GraphQL Schema definition

  • type Csr {
  • # Name of the Certificate Signing Request.
  • name: String!
  • # Hostnames for the Certificate Signing Request.
  • hostnames: [String!]!
  • # ID of the Certificate Signing Request.
  • csrId: Long!
  • # Content of the Certificate Signing Request.
  • csr: String!
  • # Email of the user who created the Certificate Signing Request.
  • creatorEmail: String!
  • # Creation timestamp of the Certificate Signing Request.
  • createdAt: DateTime
  • # Organization of the Certificate Signing Request.
  • organization: String!
  • # Organizational Unit of the Certificate Signing Request.
  • organizationUnit: String!
  • # Country of the Certificate Signing Request.
  • country: String!
  • # State of the Certificate Signing Request.
  • state: String!
  • # City of the Certificate Signing Request.
  • city: String!
  • # Email of the Certificate Signing Request.
  • email: String!
  • # Surname of the Certificate Signing Request.
  • surname: String!
  • # User ID of the Certificate Signing Request.
  • userId: String!
  • # The FID of the Certificate Signing Request.
  • csrFid: UUID!
  • }