Projects
post/api/admin/projects
Request body
Example request
{
"id": "pet-shop",
"name": "Pet shop",
"description": "This project contains features related to the new pet shop.",
"mode": "open",
"defaultStickiness": "userId",
"environments": [
"production",
"development"
],
"changeRequestEnvironments": [
{
"name": "production",
"requiredApprovals": 3
}
]
}Response
The resource was successfully created.
Example response
{
"id": "pet-shop",
"name": "Pet shop",
"description": "This project contains features related to the new pet shop.",
"featureLimit": 100,
"mode": "open",
"defaultStickiness": "userId",
"environments": [
"production",
"staging"
],
"changeRequestEnvironments": [
{
"name": "production",
"requiredApprovals": 3
}
]
}