Relay App · Example Payload

Relay App Trigger Webhook Example

Example request and response for triggering a Relay.app workflow via webhook.

AutomationWorkflowIntegrationNo-CodeAIWebhooks

Relay App Trigger Webhook Example is an example object payload from Relay App, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Trigger Webhook Workflow",
  "description": "Example request and response for triggering a Relay.app workflow via webhook.",
  "request": {
    "method": "POST",
    "url": "https://api.relay.app/v1/webhooks/wh_abc123def456",
    "headers": {
      "X-Relay-API-Key": "{api-key}",
      "Content-Type": "application/json",
      "relay-deduplication-key": "order-12345-processed"
    },
    "body": {
      "orderId": "12345",
      "customerEmail": "customer@example.com",
      "orderTotal": 299.99,
      "items": [
        { "sku": "PROD-001", "quantity": 2, "price": 149.99 }
      ]
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "runId": "run_xyz789abc123",
      "workflowId": "wf_order-processing",
      "status": "running",
      "deduplicated": false
    }
  }
}