Node Availability Reference
This topic covers parameters, properties, and examples of node availability.
Examples
Check Node Availability
-X GET and authentication are not required for this method. The curl -v flag provides verbose output.
curl -v https://pce.my-company.com:8443/api/v2/node_available
Or, you can use -i -X GET to return a 200 OK status if the node is available:
curl -i -X GET https://pce.my-company.com:8443/api/v2/node_available
Returns 200 OK if the core node is healthy and can see at least one service running in the PCE cluster.
Otherwise, it returns a 404 error.
For example, if the PCE is healthy and accessible, the response is 200 OK.
Parameters for support bundle requests
Property  | Description  | Type  | Required  | 
|---|---|---|---|
  | Organization ID  | Integer  | Yes  | 
  | Time at which to exclude entries  | String  | No  | 
  | Set to true if logs are to be included  | Boolean  | No  | 
  | Start date for log filtering  | String  | No  | 
  | A time support bundle was requested.  | string(date-time)  | Yes  | 
Properties for support bundle requests
Property  | Description  | Type  | Required  | 
|---|---|---|---|
  | URI of this request Reference to   | Yes  | |
  | The name of the support bundle  | String  | Yes  | 
  | URI of the associated report file Reference to   | Yes  | |
  | A time support bundle was requested.  | String (date-time)  | Yes  | 
  | Time support bundle completed.  | String, Null (date-time)  | Yes  | 
  | A status annunciator indicating the state of this request  | String  | Yes  | 
  | Set to true if logs are to be included  | Boolean  | Yes  | 
  | (GET, POST) Start date for log filtering  | String, Null (date-time)  | Yes  | 
  | End date for log filtering  | String, Null (date-time)  | Yes  | 
Example for POST
{
	"include_logs": true,
	"starting_at": null,
	"ending_at": null
}