Skip to main content

Create an incident via incoming webhook

  1. From the left menu, click Apps > Incident.
  2. Click Integration.
  3. Set up Incoming webhook (if not yet installed, see Configure integrations).
  4. After successful setup, click Show details to view the details.

Incoming webhook details

Webhook token and URL

Key information:

  • Token: authentication string
  • URL: incoming webhook URL used to POST incidents

Example using curl

curl "api-incident-stg.fci.fmon.fptcloud.com/api/v1/create_incident?title=json(report.title)" \
--request POST \
--header 'Authorization: a9210eeee765e209c6a81a13e957574e' \
--header 'Content-Type: application/json' \
--data '{"report":{"title":"cool that this title comes from the json"}}'