Vendr · Example Payload

Vendr Create Webhook Example

PricingProcurementSaaSSoftware Spend ManagementNegotiation

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

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.vendr.com/v1/webhooks",
    "headers": {
      "X-API-Key": "sk_live_your_api_key_here",
      "Content-Type": "application/json"
    },
    "body": {
      "url": "https://your-app.example.com/webhooks/vendr",
      "events": ["workflow.updated", "deal.closed", "pricing.updated"],
      "secret": "your_webhook_signing_secret"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "id": "wh_a1b2c3d4e5f6",
      "url": "https://your-app.example.com/webhooks/vendr",
      "events": ["workflow.updated", "deal.closed", "pricing.updated"],
      "createdAt": "2026-05-03T12:00:00Z",
      "status": "active"
    }
  }
}