Skip to content

Commit b4208e1

Browse files
Merge pull request #23 from sriharip-docusign/list_templates
FLOW-348: List Templates Action for Power Automate
2 parents 286b014 + 0eacdc7 commit b4208e1

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

certified-connectors/DocuSignDemo/apiDefinition.swagger.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2073,7 +2073,7 @@
20732073
}
20742074
},
20752075
"deprecated": false,
2076-
"x-ms-visibility": "internal"
2076+
"x-ms-visibility": "important"
20772077
}
20782078
},
20792079
"/accounts/{accountId}/account_custom_fields": {
@@ -3880,13 +3880,12 @@
38803880
"type": "object",
38813881
"properties": {
38823882
"envelopeTemplates": {
3883-
"description": "The availalbe envelope templates.",
3883+
"description": "The available envelope templates.",
38843884
"type": "array",
38853885
"items": {
38863886
"$ref": "#/definitions/EnvelopeTemplate"
38873887
},
3888-
"x-ms-summary": "Envelope templates",
3889-
"x-ms-visibility": "advanced"
3888+
"x-ms-summary": "Envelope templates"
38903889
}
38913890
}
38923891
},
@@ -3899,8 +3898,7 @@
38993898
"templateId": {
39003899
"description": "The id of the template.",
39013900
"type": "string",
3902-
"x-ms-summary": "Template Id",
3903-
"x-ms-visibility": "advanced"
3901+
"x-ms-summary": "Template Id"
39043902
},
39053903
"name": {
39063904
"description": "The name of the template.",

certified-connectors/DocuSignDemo/script.csx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1924,7 +1924,7 @@ public class Script : ScriptBase
19241924
if (newBody["documentId"] == null)
19251925
{
19261926
throw new ConnectorException(HttpStatusCode.BadRequest, "ValidationFailure: No document found matching the provided name");
1927-
}
1927+
}
19281928

19291929
response.Content = new StringContent(newBody.ToString(), Encoding.UTF8, "application/json");
19301930
}

0 commit comments

Comments
 (0)