Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for new builder #3053

Merged
merged 14 commits into from
Nov 2, 2023
Merged
Prev Previous commit
Next Next commit
Added environment as an optional paramater
  • Loading branch information
AnthonyPhan committed Apr 6, 2023
commit 549530b1844f0a47e0b262eb756b2745ff723676
11 changes: 11 additions & 0 deletions certified-connectors/Team Forms/apiDefinition.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
"parameters": [
{ "$ref": "#/parameters/groupId" },
{ "$ref": "#/parameters/formId" },
{ "$ref": "#/parameters/environment" },
{
"name": "body",
"in": "body",
Expand Down Expand Up @@ -639,6 +640,16 @@
"required": true,
"x-ms-summary": "Response",
"x-ms-visibility": "important"
},
"environment": {
"name": "environment",
"in": "query",
"type": "string",
"enum": ["Draft", "Published"],
"description": "The environment to set.",
"required": false,
"x-ms-summary": "Environment",
"x-ms-visibility": "advanced"
}
},
"responses": {},
Expand Down