provider Release pipelines (beta) GET
/api/v2/projects/{projectKey}/release-pipelines @utdk/launchdarkly
/api/v2/projects/{projectKey}/release-pipelines Get all release pipelines
Get all release pipelines for a project.
### Filtering release pipelines
LaunchDarkly supports the following fields for filters:
- `query` is a string that matches against the release pipeline `key`, `name`, and `description`. It is not case sensitive. For example: `?filter=query:examplePipeline`.
- `env` is a string that matches an environment key. For example: `?filter=env:production`.
- projectKey path required
- The project key
- string
- filter query
- A comma-separated list of filters. Each filter is of the form field:value. Read the endpoint description for a full list of available filter fields.
- string
- limit query
- The maximum number of items to return. Defaults to 20.
- integer
- offset query
- Where to start in the list. Defaults to 0. Use this with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query `limit`.
- integer
Try it
Authentication
Configure credentials for LaunchDarkly REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import launchdarkly from '@utdk/launchdarkly';
await launchdarkly.getallreleasepipelines()