For the complete documentation index, see llms.txt. For the full documentation snapshot, see llms-full.txt.
Get a specific workflow by ID.
curl --request GET \
--url https://app.launchdarkly.com/api/v2/projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/workflows/{workflowId} \
--header 'Authorization: <api-key>'{
"_id": "12ab3c4d5ef1a2345bcde67f",
"_version": 1,
"_conflicts": [
{
"stageId": "12ab3c4d5ef1a2345bcde67f",
"message": "<string>"
}
],
"_creationDate": "1654104600000",
"_maintainerId": "12ab3c45de678910abc12345",
"_links": {},
"name": "Progressive rollout starting in two days",
"_execution": "{\"status\": \"completed\"}",
"description": "Turn flag on for 10% of customers each day",
"kind": "custom",
"stages": [
{
"_id": "12ab3c45de678910abc12345",
"conditions": [
{
"_execution": {
"status": "completed"
},
"id": "12ab3c45de678910abc12345",
"kind": "schedule",
"scheduleKind": "relative",
"waitDuration": 2,
"waitDurationUnit": "calendarDay"
}
],
"action": "{ \"kind\": \"patch\", \"instructions\": [{ \"kind\": \"turnFlagOn\"}] }",
"_execution": "{ \"status\": \"completed\" }",
"name": "10% rollout on day 1"
}
],
"meta": {
"parameters": [
{
"_id": "<string>",
"path": "<string>",
"default": {
"value": "<unknown>",
"booleanVariationValue": true,
"ruleClause": {
"attribute": "<string>",
"op": "in",
"negate": true
}
},
"valid": true
}
]
},
"templateKey": "example-workflow-template"
}Documentation Index
Fetch the complete documentation index at: https://launchdarkly-preview.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The project key
The feature flag key
The environment key
The workflow ID
Workflow response
The ID of the workflow
"12ab3c4d5ef1a2345bcde67f"
The version of the workflow
1
Any conflicts that are present in the workflow stages
Show child attributes
Timestamp of when the workflow was created
"1654104600000"
The member ID of the maintainer of the workflow. Defaults to the workflow creator.
"12ab3c45de678910abc12345"
The location and content type of related resources
Show child attributes
The name of the workflow
"Progressive rollout starting in two days"
The current execution status of the workflow
Show child attributes
"{\"status\": \"completed\"}"
A brief description of the workflow
"Turn flag on for 10% of customers each day"
The kind of workflow
"custom"
The stages that make up the workflow. Each stage contains conditions and actions.
Show child attributes
For workflows being created from a workflow template, this value holds any parameters that could potentially be incompatible with the current project, environment, or flag
Show child attributes
For workflows being created from a workflow template, this value is the template's key
"example-workflow-template"
curl --request GET \
--url https://app.launchdarkly.com/api/v2/projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/workflows/{workflowId} \
--header 'Authorization: <api-key>'{
"_id": "12ab3c4d5ef1a2345bcde67f",
"_version": 1,
"_conflicts": [
{
"stageId": "12ab3c4d5ef1a2345bcde67f",
"message": "<string>"
}
],
"_creationDate": "1654104600000",
"_maintainerId": "12ab3c45de678910abc12345",
"_links": {},
"name": "Progressive rollout starting in two days",
"_execution": "{\"status\": \"completed\"}",
"description": "Turn flag on for 10% of customers each day",
"kind": "custom",
"stages": [
{
"_id": "12ab3c45de678910abc12345",
"conditions": [
{
"_execution": {
"status": "completed"
},
"id": "12ab3c45de678910abc12345",
"kind": "schedule",
"scheduleKind": "relative",
"waitDuration": 2,
"waitDurationUnit": "calendarDay"
}
],
"action": "{ \"kind\": \"patch\", \"instructions\": [{ \"kind\": \"turnFlagOn\"}] }",
"_execution": "{ \"status\": \"completed\" }",
"name": "10% rollout on day 1"
}
],
"meta": {
"parameters": [
{
"_id": "<string>",
"path": "<string>",
"default": {
"value": "<unknown>",
"booleanVariationValue": true,
"ruleClause": {
"attribute": "<string>",
"op": "in",
"negate": true
}
},
"valid": true
}
]
},
"templateKey": "example-workflow-template"
}