Skip to main content
GET
/
implementations
List implementations
curl --request GET \
  --url http://localhost:4000/api/v1/implementations \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "implementations": [
      {
        "implementation_id": "<string>",
        "implementation_name": "<string>"
      }
    ],
    "product_name": "<string>",
    "branch_name": "<string>",
    "repo_uri": "<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

repo_uri
string

Exact repository URI

branch_name
string

Exact branch name

feature_name
string

Filter to implementations that can resolve this feature

Response

Implementation list

data
ImplementationsData · object
required