SIGNL4 website screenshot

SIGNL4

SIGNL4 is a mobile alerting and on-call duty management service that transforms emails, webhooks, and IoT events into reliable push, SMS, and voice alerts with acknowledgement tracking, escalation, and team on-call scheduling. The platform provides both an inbound webhook for sending alerts and a REST API for managing alerts, statuses, annotations, and team data. Authentication uses a team or webhook secret embedded in the URL path or supplied via the X-S4-Api-Key header.

2 APIs 0 Features
AlertingIncident ManagementOn-CallMobile AlertsNotificationsDevOpsIT OperationsMonitoring

APIs

SIGNL4 Inbound Webhook API

Simple HTTPS webhook endpoint for triggering mobile alerts in SIGNL4 from any monitoring, ITSM, or IoT tool. Accepts JSON payloads with Title and Message fields plus optional X-...

SIGNL4 REST API

RESTful API for programmatic alert lifecycle management including creating events, acknowledging or closing alerts, annotating alerts, and retrieving team data. Authentication i...

Collections

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
💰
Pricing
Pricing
📝
Signup
Signup
💬
Support
Support
📰
Blog
Blog
👥
GitHub
GitHub

Sources

apis.yml Raw ↑
opencollection: 1.0.0
info:
  name: SIGNL4 Webhook and REST API
  version: v2
items:
- info:
    name: Webhook
    type: folder
  items:
  - info:
      name: Trigger Inbound Webhook Alert
      type: http
    http:
      method: POST
      url: https://connect.signl4.com/webhook/:teamSecret
      params:
      - name: teamSecret
        value: ''
        type: path
        description: Team or webhook secret that authorizes the alert.
      body:
        type: json
        data: '{}'
    docs: Trigger a SIGNL4 mobile alert by posting a payload containing Title and Message fields along with any optional X-S4
      control parameters. Authentication is via the team or webhook secret embedded in the URL path. Supports application/json,
      application/x-www-form-urlencoded, and multipart/form-data content types.
- info:
    name: Events
    type: folder
  items:
  - info:
      name: Create Event
      type: http
    http:
      method: POST
      url: https://connect.signl4.com/api/v2/events/:webhookIdOrTeamId
      params:
      - name: webhookIdOrTeamId
        value: ''
        type: path
        description: Webhook ID or team ID receiving the event.
      body:
        type: json
        data: '{}'
      auth:
        type: apikey
        key: X-S4-Api-Key
        value: '{{X-S4-Api-Key}}'
        placement: header
    docs: Raise an event in SIGNL4 that will be turned into a mobile alert. Authentication uses the X-S4-Api-Key header carrying
      the team or webhook secret.
bundled: true