SSL certificates

Overview of all SSL certificate monitors

GET https://cronly.app/api/certificates

Headers

Name
Type
Description

Authorization*

String

Bearer: API token

[
    {
        "id": 5,
        "company_id": 1,
        "project_id": null,
        "status": "valid",
        "last_checked_at": "2022-05-31T19:19:07.000000Z",
        "hostname": "dev.cronly.app",
        "port": 443,
        "expires_at": "2022-08-06T21:10:45.000000Z",
        "deleted_at": null,
        "created_at": "2022-05-31T19:19:07.000000Z",
        "updated_at": "2022-05-31T19:19:07.000000Z"
    }
]

Details of SSL certificate monitor

GET https://cronly.app/api/certificates/{id}

Query Parameters

Name
Type
Description

id*

Integer

The ID of the certificate you want to view

Headers

Name
Type
Description

Authorization*

String

Bearer: API token

Create a new SSL certificate monitor

POST https://cronly.app/api/certificates

Headers

Name
Type
Description

Authorization*

String

Bearer: API token

Request Body

Name
Type
Description

hostname*

String

port

Integer

Default: 443

project_id

Integer

Delete an SSL certificate monitor

DELETE https://cronly.app/api/certificates/{id}

Query Parameters

Name
Type
Description

id*

Integer

The ID of the certificate you want to view

Headers

Name
Type
Description

Authorization*

String

Bearer: API token

Last updated