Skip to content
Merged
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
142 changes: 138 additions & 4 deletions certified-connectors/ShareEffect/apiDefinition.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"definitions": {},
"host": "shareeffectflowconnector.azure-api.net",
"info": {
"description": "Share-Effect helps automating business processes and organize information in Office 365. With our Connector you can begin using data from other systems as metadata in SharePoint. Visit flowconnector.ShareEffect.net for more information.",
"description": "Share-Effect helps automating business processes and organize information in Office 365. With our Connector you can begin using data from other systems as metadata in SharePoint and generate documents. Visit flowconnector.ShareEffect.net for more information and pricing.",
"title": "Share-Effect",
"contact": {
"name": "Share-Effect",
Expand Down Expand Up @@ -43,6 +43,12 @@
"type": "string",
"x-ms-visibility": "advanced"
},
"parentterm": {
"description": "Enter the parent term ID if you want to create the term under another term (only when creating)",
"title": "Parent term ID",
"type": "string",
"x-ms-visibility": "advanced"
},
"termlabel": {
"description": "The name for the label",
"title": "Name",
Expand Down Expand Up @@ -105,6 +111,10 @@
"type": "string",
"description": "Termid"
},
"Term": {
"type": "string",
"description": "Term"
},
"LicenseExpires": {
"type": "string",
"description": "LicenseExpires"
Expand Down Expand Up @@ -146,6 +156,12 @@
"type": "string",
"x-ms-visibility": "advanced"
},
"parentterm": {
"description": "Enter the parent term ID if you want to create the term under another term (only when creating)",
"title": "Parent term ID",
"type": "string",
"x-ms-visibility": "advanced"
},
"termlabel": {
"description": "The name for the label",
"title": "Name",
Expand Down Expand Up @@ -209,6 +225,10 @@
"type": "string",
"description": "Termid"
},
"Term": {
"type": "string",
"description": "Term"
},
"LicenseExpires": {
"type": "string",
"description": "LicenseExpires"
Expand All @@ -230,10 +250,10 @@
"200": {
"description": "default",
"schema": {
"type": "array",
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
Expand Down Expand Up @@ -362,7 +382,121 @@
"summary": "Get terms by label"
}
},
"/workflows/09a7432e83914ef0a36d3219b0a28a44/triggers/manual/paths/invoke": {}
"/uploadtemplate": {
"post": {
"responses": {
"200": {
"description": "default",
"schema": {
"type": "object",
"properties": {
"templateId": {
"type": "string",
"description": "templateId"
}
}
}
}
},
"summary": "Upload document template",
"description": "Uploads a document template that can be used for 24 hours to generate documents.",
"operationId": "UploadTemplate",
"parameters": [
{
"name": "body",
"in": "body",
"required": true,
"schema": {
"type": "object",
"properties": {
"templateId": {
"type": "string",
"description": "Enter a value to uniquely identify this template",
"title": "Template ID"
},
"template": {
"type": "string",
"description": "The template as a base64 string",
"title": "Template"
}
},
"required": [
"template",
"templateId"
]
}
}
]
}
},
"/GenerateDocument": {
"post": {
"responses": {
"200": {
"description": "default",
"schema": {
"type": "object",
"properties": {
"$content-type": {
"type": "string",
"description": "$content-type"
},
"$content": {
"type": "string",
"description": "$content"
}
}
}
}
},
"summary": "Generate document",
"description": "Generate document using a template ID that must be uploaded previously using this action. Enter the document data in JSON format",
"operationId": "GenerateDocument",
"parameters": [
{
"name": "body",
"in": "body",
"required": true,
"schema": {
"type": "object",
"properties": {
"templateId": {
"type": "string",
"description": "Pass the template ID that has been uploaded previously",
"title": "Template ID"
},
"outputformat": {
"type": "string",
"description": "Output format",
"title": "Output format",
"enum": [
"docx",
"pdf"
]
},
"data": {
"title": "Data",
"type": "object",
"properties": {},
"description": "The document data in JSON format"
},
"properties": {
"title": "Properties",
"type": "object",
"properties": {},
"description": "Options in JSON format"
}
},
"required": [
"outputformat",
"templateId",
"data"
]
}
}
]
}
}
},
"produces": [],
"responses": {},
Expand Down
6 changes: 3 additions & 3 deletions certified-connectors/ShareEffect/readme.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

## ShareEffect
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please review and add the required sections. Follow this link for more instructions.

ShareEffect helps automating business processes and organize information in Office 365. With our Connector you can begin using data from other systems as metadata in SharePoint. Visit flowconnector.ShareEffect.net for more information.
Share-Effect helps automating business processes and organize information in Office 365. With our Connector you can begin using data from other systems as metadata in SharePoint and generate documents. Visit flowconnector.ShareEffect.net for more information and pricing.


## Pre-requisites
Just add the connector to start using it.
Just add the connector to start using it 30 days for free.


## API documentation
Comming soon!
Comming soon!