List the App's webhook subscriptions
Returns every webhook subscription tied to the App. The signing secret is never included in list/get responses — it is only revealed at create and rotate time.
The caller must hold the app:manage_webhooks grant on urn:app:<sourcedApplicationId>.
Path Parameters
- Type: stringFormat: uuidsourced
Application Id requiredUUID of the App the subscriptions are tied to
Responses
- application/json
- application/json
- application/json
- application/json
- application/json
Request Example for get/webhooks/1.0/{sourcedApplicationId}/subscriptions
curl https://platform.dev.timeback.com/webhooks/1.0/123e4567-e89b-12d3-a456-426614174000/subscriptions \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"url": "https://example.com",
"eventTypes": [
"string"
],
"status": "active",
"dateCreated": "2026-06-15T00:04:48.767Z"
}
]