List per-task push-notification configs.
GET
/v1/sessions/{session_id}/tasks/{task_id}/push-configs
const url = 'https://app.everruns.com/api/v1/sessions/example/tasks/example/push-configs';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://app.everruns.com/api/v1/sessions/example/tasks/example/push-configsParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” session_id
required
string
Session ID
task_id
required
string
Task ID
Responses
Section titled “ Responses ”Push configs
Media type application/json
Array<object>
Public view of a per-task push config. The stored secret is NEVER returned —
only has_secret signals whether one is configured.
object
created_at
required
When the config was created (RFC 3339).
string format: date-time
event_filter
required
Events that trigger delivery (terminal, awaiting_input, message).
Array<string>
has_secret
required
Whether a signing secret is configured (the secret itself is never returned).
boolean
id
required
Public identifier (tpc_<32-hex-chars>).
string
updated_at
required
When the config was last updated (RFC 3339).
string format: date-time
url
required
Target URL that receives POST deliveries.
string
Example
[ { "created_at": "2026-07-11T00:00:00Z", "has_secret": true, "id": "tpc_9f8c2b1a4e7d4c3b8a1f2e3d4c5b6a7f", "updated_at": "2026-07-11T00:00:00Z", "url": "https://hooks.example.com/everruns/tasks" }]Session or task not found