Skip to content

List all feature flag user lists for a project

GET
/api/v4/projects/{id}/feature_flags_user_lists

Lists all feature flag user lists for a specified project.

id
required
One of:
string

The ID or URL-encoded path of the project

search
string
nullable

Return user lists matching the search criteria

page
integer
default: 1 nullable

Current page number

Example
1
per_page
integer
default: 20 nullable

Number of items per page

Example
20

OK

Media type application/json
object
id
integer format: int64
iid
integer
name
string
user_xids
string
project_id
integer format: int64
created_at
string format: date-time
updated_at
string format: date-time
path
string
edit_path
string
Example
{
"id": 1,
"iid": 1,
"name": "user_list",
"user_xids": "user1,user2",
"project_id": 2,
"created_at": "2020-02-04T08:13:10.507Z",
"updated_at": "2020-02-04T08:13:10.507Z"
}

Bad Request

Unauthorized

Not found