### GET /api/sslcert/{{sslcert_check_id}}/state Source: https://api.dns.constellix.com/v4/docs/index Retrieves the current state of an SSL certificate check. ```APIDOC ## GET /api/sslcert/{{sslcert_check_id}}/state ### Description Retrieves the current state of an SSL certificate check. ### Method GET ### Endpoint `{{baseurl}}/api/sslcert/{{sslcert_check_id}}/state` ### Parameters #### Path Parameters - **sslcert_check_id** (string) - Required - The ID of the SSL certificate check to retrieve the state for. #### Query Parameters None #### Request Body None ### Request Example ```bash curl --location -g '{{baseurl}}/api/sslcert/{{sslcert_check_id}}/state' \ --header 'x-cns-security-token: {{token}}' \ --header 'Content-Type: application/json' ``` ### Response #### Success Response (200) This request does not return a response body or headers. ``` -------------------------------- ### GET /api/sslcert/{{sslcert_check_id}}/status Source: https://api.dns.constellix.com/v4/docs/index Retrieves the overall status of an SSL certificate check. ```APIDOC ## GET /api/sslcert/{{sslcert_check_id}}/status ### Description Retrieves the overall status of an SSL certificate check. ### Method GET ### Endpoint `{{baseurl}}/api/sslcert/{{sslcert_check_id}}/status` ### Parameters #### Path Parameters - **sslcert_check_id** (string) - Required - The ID of the SSL certificate check to retrieve the status for. #### Query Parameters None #### Request Body None ### Request Example ```bash curl --location -g '{{baseurl}}/api/sslcert/{{sslcert_check_id}}/status' \ --header 'x-cns-security-token: {{token}}' \ --header 'Content-Type: application/json' ``` ### Response #### Success Response (200) This request does not return a response body or headers. ``` -------------------------------- ### GET /api/sslcert/{{sslcert_check_id}}/site/status Source: https://api.dns.constellix.com/v4/docs/index Retrieves the status of an SSL certificate check for specific sites. ```APIDOC ## GET /api/sslcert/{{sslcert_check_id}}/site/status ### Description Retrieves the status of an SSL certificate check for specific sites. ### Method GET ### Endpoint `{{baseurl}}/api/sslcert/{{sslcert_check_id}}/site/status` ### Parameters #### Path Parameters - **sslcert_check_id** (string) - Required - The ID of the SSL certificate check. #### Query Parameters - **siteIds** (string) - Required - A comma-separated list of site IDs to filter the status by. #### Request Body None ### Request Example ```bash curl --location -g '{{baseurl}}/api/sslcert/{{sslcert_check_id}}/site/status' \ --header 'x-cns-security-token: {{token}}' \ --header 'Content-Type: application/json' ``` ### Response #### Success Response (200) This request does not return a response body or headers. ``` -------------------------------- ### GET /api/tcp/{{tcp_check_id}}/state Source: https://api.dns.constellix.com/v4/docs/index Retrieves the current state of a specific TCP check. ```APIDOC ## GET /api/tcp/{{tcp_check_id}}/state ### Description Retrieves the current state of a specific TCP check. ### Method GET ### Endpoint `{{baseurl}}/api/tcp/{{tcp_check_id}}/state` ### Parameters #### Path Parameters - **tcp_check_id** (string) - Required - The ID of the TCP check to retrieve the state for. #### Query Parameters None #### Request Body None ### Request Example ```bash curl --location -g '{{baseurl}}/api/tcp/{{tcp_check_id}}/state' \ --header 'x-cns-security-token: {{token}}' \ --header 'Content-Type: application/json' ``` ### Response #### Success Response (200) This request does not return a response body or headers. ``` -------------------------------- ### Get SSL Certificate Check State using cURL Source: https://api.dns.constellix.com/v4/docs/index Fetches the state of an SSL certificate check using its unique ID. The request requires an authentication token and the Content-Type header set to application/json. Successful execution results in no response body or headers. ```cURL curl --location -g '{{baseurl}}/api/sslcert/{{sslcert_check_id}}/state' \ --header 'x-cns-security-token: {{token}}' \ --header 'Content-Type: application/json' ``` -------------------------------- ### Get Overall SSL Certificate Check Status using cURL Source: https://api.dns.constellix.com/v4/docs/index Fetches the overall status of an SSL certificate check identified by its ID. The request must include an authentication token and set the Content-Type to application/json. This API call does not return a response body or headers. ```cURL curl --location -g '{{baseurl}}/api/sslcert/{{sslcert_check_id}}/status' \ --header 'x-cns-security-token: {{token}}' \ --header 'Content-Type: application/json' ``` -------------------------------- ### Get SSL Certificate Check Site Status using cURL Source: https://api.dns.constellix.com/v4/docs/index Retrieves the status of an SSL certificate check for a specific site or set of sites, identified by the SSL certificate check ID and a list of site IDs. Authentication and JSON content type are required. This endpoint returns no response body or headers. ```cURL curl --location -g '{{baseurl}}/api/sslcert/{{sslcert_check_id}}/site/status' \ --header 'x-cns-security-token: {{token}}' \ --header 'Content-Type: application/json' ``` -------------------------------- ### Get TCP Check State using cURL Source: https://api.dns.constellix.com/v4/docs/index Retrieves the current state of a specific TCP check using its ID. This endpoint requires authentication via a security token and specifies the content type as JSON. No response body or headers are returned upon successful execution. ```cURL curl --location -g '{{baseurl}}/api/tcp/{{tcp_check_id}}/state' \ --header 'x-cns-security-token: {{token}}' \ --header 'Content-Type: application/json' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.