Dec 16, 2021
Once you have got your API Key and Secret, you can test the authentication by sending GET request to /ping endpoint
REQUEST
curl -X GET "https://manage.runcloud.io/api/v2/ping" \ -u YOUR_API_KEY:YOUR_API_SECRET \ -H "Content-Type: application/json" \ -H "Accept: application/json"
If your request is successful, you will get pong message as the output.
RESPONSE
{ "message": "pong"}
For further information on using RunCloud API, visit the API documentation.