Docs/sandbox

Sandbox & Testing Environment

Test credentials, mock webhooks, and sandbox patient fixtures.

Sandbox & Testing Environment

The Rehabify Sandbox allows engineering teams to build, test, and simulate the entire end-to-end integration lifecycle without sending real WhatsApp messages or charging live credit cards.


Test API Credentials

Use the following sandbox test keys during development:

Key TypeKey Value
Sandbox Public Keypk_test_rehab_sandbox_990182
Sandbox Secret Keysk_test_rehab_sandbox_sec_881290
Sandbox Webhook Secretwhsec_test_mock_secret_key_4411

Test Patient Phone Numbers

Simulate specific intake scenarios using these dedicated test phone numbers:

Test Phone NumberSimulated ScenarioTriggered Webhook
+2348000000001Instant Intake Successpatient.intake_completed within 5 seconds
+2348000000002Provider Auto-Matchedprovider.matched within 10 seconds
+2348000000003Session Auto-Completedsession.completed with sample pain reduction score
+2348000000004Ineligible PolicyReturns 400 Bad Request with ineligible status
+2348000000005Replay Attack / Webhook FailSimulates HTTP 500 error on webhook endpoint

Mock Webhook Delivery Simulator

You can manually trigger test webhook deliveries to your endpoint using cURL:

Code
curl -X POST https://api.physioaroundme.com/api/v1/sandbox/trigger-webhook \
  -H "Authorization: Bearer sk_test_rehab_sandbox_sec_881290" \
  -H "Content-Type: application/json" \
  -d '{
    "event": "session.completed",
    "target_url": "https://api.yourdomain.com/webhooks/rehabify"
  }'
Sandbox & Testing Environment | Rehabify Docs | Physio Around Me by Rehabify Health