Test Connection

JFrog REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: Test connection with Distribution.

Since: 1.0

Security: No authentication required.

Usage: GET /api/v1/system/ping

Request headers: N/A

Consumes: N/A

cURL Example

$ curl -X GET "http://ARTIFACTORY_SERVER_HOSTNAME:8082/distribution/api/v1/system/ping"

Response status codes:

200 - Connection healthy

500 - Error. The following error is displayed: "One or more of the following services are unavailable: distributor, database and/or redis."

Response headers: N/A

Produces: application/json

Response

On Success
{
  "status_code”: 200,
  "message": "ok"
}
 
On Error
{
  "status_code”: 500,
  "message": "One or more of the following services are unavailable: distributor, database and/or redis"
}