GET
/api/v1/webhooks/subscriptions
Auth: Bearer token
List Subscriptions
Returns webhook subscriptions configured in the environment.
Example response
<?php
return [
'success' => true,
'data' => [
[
'subscription_id' => 'wh_22',
'status' => 'active',
'url' => 'https://example.com/webhooks/pickndrop',
'events' => [
'shipment.created',
'booking.updated'
],
'createdAt' => '2026-02-17T10:45:00Z'
]
]
];
Request examples
curl -X GET \
"https://api.spaces.za.com/api/v1/webhooks/subscriptions" \
-H "Authorization: Bearer <token>" \\