/ping
GET
https://api.wherehouse.co.za/v1/ping
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.wherehouse.co.za/v1/ping' \
--header 'Authorization: Basic Og=='
Responses
🟢200OK
application/json
Body
pong
stringÂ
required
subscription
objectÂ
required
created_at
stringÂ
required
id
integerÂ
required
legal_name
stringÂ
required
name
stringÂ
required
payment_method
stringÂ
required
status
stringÂ
required
uid
stringÂ
required
updated_at
stringÂ
required
Example
{
"pong": "2025-02-20T13:07:57.095Z",
"subscription": {
"created_at": "2021-11-03T07:55:56.018Z",
"id": 5,
"legal_name": "Rocketship Retail",
"name": "Rocketship Retail 🚀 (Demo)",
"payment_method": "payfast",
"status": "active",
"uid": "demo-subscription",
"updated_at": "2025-02-05T13:15:58.265Z"
}
}