Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
120 changes: 119 additions & 1 deletion certified-connectors/DocuSignDemo/apiDefinition.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1184,6 +1184,96 @@
"x-ms-visibility": "important"
}
},
"/accounts/{accountId}/envelopes/compositeTemplates": {
"post": {
"summary": "Composite Templates",
"operationId": "CompositeTemplates",
"parameters": [
{
"name": "accountId",
"in": "path",
"description": "Account id",
"required": true,
"x-ms-summary": "Account",
"x-ms-test-value": "insert account id",
"x-ms-visibility": "important",
"x-ms-dynamic-values": {
"operationId": "GetLoginAccounts",
"value-collection": "loginAccounts",
"value-path": "accountIdGuid",
"value-title": "name"
},
"type": "string"
},
{
"name": "emailSubject",
"in": "query",
"description": "Subject of the email.",
"required": true,
"x-ms-summary": "Email subject",
"x-ms-visibility": "important",
"type": "string"
},
{
"name": "emailBody",
"in": "query",
"description": "Body of the email.",
"required": false,
"x-ms-summary": "Email body",
"x-ms-visibility": "important",
"type": "string"
},
{
"name": "status",
"in": "query",
"description": "Envelope status",
"required": true,
"x-ms-summary": "Envelope status",
"x-ms-test-value": "Created",
"x-ms-visibility": "important",
"type": "string",
"enum": [
"Sent",
"Created"
]
},
{
"name": "body",
"in": "body",
"required": false,
"schema": {
"$ref": "#/definitions/CompositeTemplateSchema"
}
}
],
"responses": {
"default": {
"description": "default",
"schema": {
"type": "object",
"properties": {
"envelopeId": {
"type": "string",
"description": "envelopeId"
},
"uri": {
"type": "string",
"description": "uri"
},
"statusDateTime": {
"type": "string",
"description": "statusDateTime"
},
"status": {
"type": "string",
"description": "status"
}
}
}
}
}
}
},
"/accounts/salesCopilotAccount/envelopes/getRelatedActivities": {
"get": {
"tags": [
Expand Down Expand Up @@ -3593,7 +3683,7 @@
}
},
"deprecated": false,
"x-ms-visibility": "important"
"x-ms-visibility": "internal"
}
},
"/accounts/{accountId}/account_custom_fields": {
Expand Down Expand Up @@ -4552,6 +4642,25 @@
"x-ms-visibility": "internal"
}
},
"/composite_templates_schema": {
"get": {
"tags": [
"StaticResponse"
],
"description": "Get schema for a composite templates.",
"operationId": "StaticResponseForCompositeTemplates",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "object"
}
}
},
"deprecated": false,
"x-ms-visibility": "internal"
}
},
"/recipienttype_schema": {
"get": {
"tags": [
Expand Down Expand Up @@ -5426,6 +5535,15 @@
"value-path": "Schema"
}
},
"CompositeTemplateSchema": {
"description": "An object that represents the schema for composite templates.",
"type": "object",
"properties": {},
"x-ms-dynamic-schema": {
"operationId": "StaticResponseForCompositeTemplates",
"value-path": "Schema"
}
},
"AddRecipientToEnvelopeRequest": {
"type": "object",
"properties": {
Expand Down
Loading