Buckets

Create a New Bucket

You may create your own bucket using this action. It takes a JSON object containing a bucket request. Once bucket is created, it gets assigned a default input to accept webhooks but you will still have to create a new output to give it a destination.

post/v1/buckets

Request body

namestring
descriptionstring

Response

Created

idstring
created_atinteger
updated_atinteger
namestring
descriptionstring
suspendedboolean

Indicates that webhooks will not be received due to quota limits

streamboolean

Enable/disabled streaming to WebSocket clients from this bucket

ephemeralboolean

If ephemeral is enabled, Webhook Relay will not persist request body, headers or response details

Example response

{
  "inputs": [
    {
      "headers": {
        "Content-Type": [
          "JSON"
        ],
        "Foo": [
          "Bar"
        ]
      }
    }
  ],
  "outputs": [
    {
      "headers": {
        "Content-Type": [
          "JSON"
        ],
        "Foo": [
          "Bar"
        ]
      }
    }
  ]
}

Changes