PUT/api/v2/projects/projectKey/flags/flagKey/release
Path Parameters
Body Parameters
View in API Reference
Request
1import requests
2
3# Create a new release for flag (PUT /api/v2/projects/:projectKey/flags/:flagKey/release)
4response = requests.put(
5 "https://app.launchdarkly.com/api/v2/projects/projectKey/flags/flagKey/release",
6 headers={
7 "Authorization": "",
8 "Content-Type": "application/json"
9 },
10 json={
11 "releasePipelineKey": "releasePipelineKey"
12 },
13)
14
15print(response.json())
Response