Querying the Testing Endpoint
Make sure the connection is successful and return the system time. Query this endpoint when setting up an integration, or to confirm that credentials are still valid.
Your API key, found under Store Settings on the API tab. This should be kept server-side.
Your store ID, found under Store Settings on the API tab.
Your credentials are valid.
Either success or error.
Describes the result. Always present when an error occurs.
Time taken to process the request.
0.1524 secondsSystem time in UTC.
2015-04-14 22:00:10Authentication failed. See the Authentication guide, and note that an invalid store ID blocks your store rather than simply failing the request.
This account's plan does not include API access. Like an invalid store ID, this blocks the store rather than simply failing the request.
You are sending too fast. Wait X-Retry-After seconds. See
the Rate Limits guide.
The request could not be completed.
curl "https://app.orderdesk.me/api/v2/test" \
-H "ORDERDESK-STORE-ID: your-store-id" \
-H "ORDERDESK-API-KEY: your-api-key"
{
"status": "success",
"message": "Connection Successful",
"current_date_time": "2015-04-14 22:00:10",
"execution_time": "0.0121 seconds"
}Last updated
Was this helpful?

