For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
13.5kProductPricingSign inStart free trialBook a demo
DocsAPIsSDKsEnterprise EdgeGuidesAcademyRelease notes
DocsAPIsSDKsEnterprise EdgeGuidesAcademyRelease notes
    • API overview
  • Client API
  • Frontend API
  • Admin API
      • GETGet a list of all projects.
      • POSTCreate project
      • POSTValidate project ID
      • PUTUpdate project
      • DELDelete project
      • PUTUpdate project enterprise settings
      • POSTArchive project
      • POSTRevive project
      • GETGet users and groups in project
      • POSTConfigure project access
      • PUTSet users and groups to roles in the current project
      • GETGet project-role mappings
      • PUTSets roles for user
      • DELRemove project access for a user
      • PUTSets roles for group
      • DELRemove project access for a group
      • GET[BETA] List action sets.
      • POST[BETA] Create an action set.
      • PUT[BETA] Update an action set.
      • DEL[BETA] Delete an action set.
      • POST[BETA] Enables an action set.
      • POST[BETA] Disables an action set.
      • GET[BETA] Get action events for a specific action set.
      • GET[BETA] Configuration for the actions UI.
      • GETGet an overview of a project.
      • GETGet an overview project dora metrics.
      • GETGet a list of all applications for a project.
      • GETGet a list of all flag creators for a project.
      • GETGet outdated project SDKs
      • POSTAdd an environment to a project.
      • DELRemove an environment from a project.
      • POSTSet environment-default strategy
      • GETGet a health report for a project.
      • GETGet api tokens for project.
      • POSTCreate a project API token.
      • DELDelete a project API token.
      • GETGet an overview of a project insights.
      • GET[BETA] Get project status
      • GET[BETA] Get personal dashboard
      • GET[BETA] Get personal project details

Unleash reduces the risk of releasing new features, drives innovation by streamlining the software release process, and increases revenue by optimizing end-user experience. While we serve the needs of the world's largest, most security-conscious organizations, we are also rated the “Easiest Feature Management system to use” by G2.

GitHubGitHubLinkedInLinkedInX (Twitter)X (Twitter)SlackSlackStack OverflowStack OverflowYouTubeYouTube

Server SDKs

  • Node.js
  • Java
  • Go
  • Rust
  • Ruby
  • Python
  • .NET
  • PHP
  • All SDKs

Frontend SDKs

  • JavaScript
  • React
  • Next.js
  • Vue
  • iOS
  • Android
  • Flutter

Feature Flag use cases

  • Secure, scalable feature flags
  • Rollbacks
  • FedRAMP, SOC2, ISO2700 compliance
  • Progressive or gradual rollouts
  • Trunk-based development
  • Software kill switches
  • A/B testing
  • Feature management
  • Canary releases

Product

  • Quickstart
  • Unleash architecture
  • Pricing
  • Product vision
  • Open live demo
  • Open source
  • Enterprise feature management platform
  • Unleash vs LaunchDarkly

Support

  • Help center
  • Status
  • Changelog
Made in a cosy atmosphere in the Nordic countries.Copyright © 2026 Unleash
LogoLogo
13.5kProductPricingSign inStart free trialBook a demo
Admin APIProjects

[BETA] List action sets.

||View as Markdown|
GET
https://app.unleash-instance.example.com/api/admin/projects/:projectId/actions
GET
/api/admin/projects/:projectId/actions
$curl https://app.unleash-instance.example.com/api/admin/projects/projectId/actions \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "actions": [
3 {
4 "id": 42,
5 "project": "enterprise-app",
6 "createdAt": "2024-05-10T09:15:00+02:00",
7 "createdByUserId": 7,
8 "name": "Disable payment features",
9 "actorId": 15,
10 "actions": [
11 {
12 "id": 101,
13 "createdAt": "2024-05-10T09:16:00+02:00",
14 "createdByUserId": 7,
15 "action": "disable-feature",
16 "sortOrder": 1,
17 "executionParams": {
18 "featureName": "payment-gateway"
19 }
20 },
21 {
22 "id": 102,
23 "createdAt": "2024-05-10T09:17:00+02:00",
24 "createdByUserId": 7,
25 "action": "send-notification",
26 "sortOrder": 2,
27 "executionParams": {
28 "channel": "slack",
29 "message": "Payment gateway disabled due to high failure rate"
30 }
31 }
32 ],
33 "match": {
34 "source": "signal-endpoint",
35 "sourceId": 987,
36 "payload": {
37 "type": "error-rate-above-threshold",
38 "threshold": 0.05,
39 "metric": "transaction-failure-rate"
40 }
41 },
42 "description": "Disables payment features when transaction failure rate exceeds 5%",
43 "enabled": true
44 }
45 ]
46}

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.

Was this page helpful?
Previous

[BETA] Create an action set.

Next
Built with

Authentication

Authorizationstring
API key needed to access this API
OR
AuthorizationBearer
API key needed to access this API, in Bearer token format

Path parameters

projectIdstringRequired

Response

actionsListSchema
actionslist of objects
A list of action sets.

Errors

401
Unauthorized Error
403
Forbidden Error