v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Projects

[BETA] List action sets.

Enterprise feature

[BETA] This API is in beta state, which means it may change or be removed in the future.

Returns the list of all action sets.

get/api/admin/projects/{projectId}/actions

Path parameters

projectIdstring required

Response

actionsListSchema

Example response

{
  "actions": [
    {
      "id": 1,
      "project": "default",
      "createdAt": "2023-12-27T13:37:00+01:00",
      "createdByUserId": 1,
      "name": "Disable new features",
      "description": "Disables new features when error rate is above threshold",
      "actorId": 12,
      "enabled": true,
      "actions": [
        {
          "id": 1,
          "createdAt": "2023-12-27T13:37:00+01:00",
          "createdByUserId": 1,
          "action": "disable-feature",
          "sortOrder": 1,
          "executionParams": {
            "featureName": "my-feature"
          }
        }
      ],
      "match": {
        "source": "signal-endpoint",
        "sourceId": 123,
        "payload": {
          "type": "error-rate-above-threshold"
        }
      }
    }
  ]
}