Skip to main content
POST
/
webhooks
/
{webhook_id}
/
{token}
/
sentry
Execute Sentry webhook
curl --request POST \
  --url https://api.fluxer.app/v1/webhooks/{webhook_id}/{token}/sentry \
  --header 'Content-Type: application/json' \
  --data '
{
  "action": "<string>",
  "installation": {
    "uuid": "<string>"
  },
  "data": {
    "issue": {
      "id": "<string>",
      "shortId": "<string>",
      "title": "<string>",
      "permalink": "<string>",
      "level": "<string>",
      "status": "<string>",
      "platform": "<string>",
      "project": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "platform": "<string>"
      },
      "type": "<string>",
      "metadata": {
        "value": "<string>",
        "type": "<string>"
      },
      "count": "<string>",
      "userCount": 123,
      "firstSeen": "<string>",
      "lastSeen": "<string>",
      "culprit": "<string>"
    }
  },
  "actor": {
    "type": "<string>",
    "id": "<string>",
    "name": "<string>"
  }
}
'
{
  "code": "ACCESS_DENIED",
  "message": "<string>",
  "errors": [
    {
      "path": "<string>",
      "message": "<string>",
      "code": "<string>"
    }
  ]
}

Path Parameters

webhook_id
string<snowflake>
required

The ID of the webhook

token
string
required

The token

Body

application/json
action
string | null
installation
object
data
object
actor
object

Response

No Content