Skip to main content
GET
/
v1
/
materializedSegments
List MaterializedSegment
curl --request GET \
  --url https://flags.eu.confidence.dev/v1/materializedSegments \
  --header 'Authorization: Bearer <token>'
{
  "materializedSegments": [
    {
      "displayName": "<string>",
      "createTime": {},
      "updateTime": {},
      "creator": "<string>",
      "updater": "<string>",
      "name": "<string>",
      "labels": [
        {}
      ],
      "owner": "<string>"
    }
  ],
  "nextPageToken": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

pageSize
object

The maximum number of materialized segments to fetch.

pageToken
string

Token used for pagination.

filter
string

Filter to apply to the materialized segments. This follows the lucene query string format

Response

200 - application/json

OK

The returned list of rules.

materializedSegments
object[]
required

The list of materialized segments.

nextPageToken
string

A token that can be used to fetch more materializations, empty if no more materializations are available.