Update: 2026-06-11 18:22:57

This commit is contained in:
Hamza-Ayed
2026-06-11 18:22:59 +03:00
parent c5170a88d2
commit 727068b668
629 changed files with 46050 additions and 46109 deletions

View File

@@ -0,0 +1,28 @@
<?php
// Define the response headers
$headers = [];
// Define the response body
$body = [
'about' => 'Pipedream is the fastest way to connect APIs. Build and run workflows with code-level control when you need it — and no code when you don\'t.',
'event_id' => $_GET['event_id'],
'workflow_id' => $_GET['workflow_id'],
'owner_id' => $_GET['owner_id'],
'deployment_id' => $_GET['deployment_id'],
'timestamp' => $_GET['timestamp'],
'inspect' => 'https://pipedream.com/@/' . $_GET['workflow_id'],
'quickstart' => 'https://pipedream.com/quickstart/',
];
// Send the response
http_response_code(200);
foreach ($headers as $key => $value) {
header("$key: $value");
}
echo json_encode($body);
echo json_decode($body);
?>