Skip to main content

Get a list of all flag creators for a project.

GET <your-unleash-url>/api/admin/projects/:projectId/flag-creators

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

This endpoint returns every user who created a flag in the project.

Request

Path Parameters

  • projectId string required
Responses

projectFlagCreatorsSchema

Schema
  • Array [
  • id integer required

    The user id.

  • name string required

    Name of the user. If the user has no set name, the API falls back to using the user's username (if they have one) or email (if neither name or username is set).

  • ]

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
projectId — path required
curl / cURL
curl -L -X GET '<your-unleash-url>/api/admin/projects/:projectId/flag-creators' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'