Skip to main content
GET
/
feature-context
Read canonical feature context
curl --request GET \
  --url http://localhost:4000/api/v1/feature-context \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "acids": [
      {
        "acid": "<string>",
        "refs_count": 123,
        "requirement": "<string>",
        "state": {
          "comment": "<string>",
          "status": "<string>",
          "updated_at": "<string>"
        },
        "test_refs_count": 123,
        "deprecated": true,
        "note": "<string>",
        "refs": [
          {
            "branch_name": "<string>",
            "is_test": true,
            "path": "<string>",
            "repo_uri": "<string>"
          }
        ],
        "replaced_by": [
          "<string>"
        ]
      }
    ],
    "feature_name": "<string>",
    "implementation_id": "<string>",
    "implementation_name": "<string>",
    "product_name": "<string>",
    "refs_source": {
      "source_type": "local",
      "branch_names": [
        "<string>"
      ],
      "implementation_name": "<string>"
    },
    "spec_source": {
      "source_type": "local",
      "branch_names": [
        "<string>"
      ],
      "implementation_name": "<string>"
    },
    "states_source": {
      "source_type": "local",
      "branch_names": [
        "<string>"
      ],
      "implementation_name": "<string>"
    },
    "summary": {
      "status_counts": {},
      "total_acids": 123
    },
    "warnings": [
      "<string>"
    ],
    "dangling_states": [
      {
        "acid": "<string>",
        "state": {
          "comment": "<string>",
          "status": "<string>",
          "updated_at": "<string>"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

product_name
string
required

Product name

feature_name
string
required

Feature name

implementation_name
string
required

Implementation name

include_refs
boolean

Include per-ACID ref details

include_dangling_states
boolean

Include dangling stored states

include_deprecated
boolean

Include deprecated ACIDs

statuses
string[]

Repeated status filter values; the literal string null means a null status

Response

Feature context

data
FeatureContextData · object
required