PrintNowPrintNowDocs

Ping

Health-check endpoint to verify API credentials are working correctly.

The Ping endpoint is a lightweight health check that validates your API credentials without performing any data operations. Use it to verify that your token/key pair is valid, your license is active, and HTTPS connectivity is working.

Ping has a lower minimum license requirement of BusinessPlus (vs. Enterprise for most other endpoints), making it available to a wider range of accounts.

Endpoint

MethodEndpointDescription
GET/api/v2/pingVerify API credentials

Verify Credentials

Test that your API token and key are valid and your license meets the minimum requirement.

GET /api/v2/ping

Example Request

curl -X GET https://api.printnow.com/api/v2/ping \
  -u "YOUR_TOKEN:YOUR_KEY"

Response

Returns 204 No Content with an empty body on success. Any authentication failure returns 401 Unauthorized with a descriptive message (see Authentication for details).

On this page