7shifts · Schema

Webhook

7shifts Webhook resource.

RestaurantSchedulingWorkforce ManagementEmployee SchedulingTime TrackingHRISLabor

Properties

Name Type Description
id integer
webhook_url string
event_type string The event that triggers this webhook.
active boolean
created string
modified string
View JSON Schema on GitHub

JSON Schema

7shifts-webhook-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/7shifts/refs/heads/main/json-schema/7shifts-webhook-schema.json",
  "title": "Webhook",
  "type": "object",
  "description": "7shifts Webhook resource.",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "webhook_url": {
      "type": "string",
      "format": "uri"
    },
    "event_type": {
      "type": "string",
      "description": "The event that triggers this webhook."
    },
    "active": {
      "type": "boolean"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "modified": {
      "type": "string",
      "format": "date-time"
    }
  }
}