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
3 changes: 3 additions & 0 deletions certified-connectors/Converter by Power2Apps/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ Convert CSV data to Excel file

### Convert SharePoint search results to list
Convert SharePoint search results to a simple list

### Convert file (DOCX, PPTX, XLSX, HTML, ...) to PDF
Convert a document (Word, Powerpoint, Excel, ..) to a PDF-File
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
"type": "string",
"default": "application/json",
"x-ms-visibility": "internal",
"description": "SharePoint JSON result",
"description": "SharePoint Json result",
"x-ms-summary": "SP result"
},
{
Expand Down Expand Up @@ -202,8 +202,8 @@
}
}
},
"summary": "Extract Word (docx) bookmarks",
"description": "Extract all Word (docx) bookmarks",
"summary": "Extract Word (DOCX) bookmarks to a list",
"description": "Extract all Word (docx) bookmarks to a list",
"operationId": "ExtractWordBookmarks",
"parameters": [
{
Expand All @@ -224,10 +224,105 @@
],
"x-ms-visibility": "important"
}
},
"/GetFileExtensions": {
"get": {
"summary": "(private) Get list of domains",
"produces": [
"application/json"
],
"responses": {
"200": {
"schema": {
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
}
}
},
"type": "array"
},
"description": "List of file extensions"
}
},
"x-ms-visibility": "internal",
"operationId": "GetFileExtensions",
"description": "Returns supported file extensions"
}
},
"/ConvertFileToPdf": {
"post": {
"summary": "Convert file (DOCX, PPTX, XLSX, HTML, ...) to PDF",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "object"
}
}
},
"parameters": [
{
"$ref": "#/parameters/fileType"
},
{
"$ref": "#/parameters/fileName"
},
{
"name": "File",
"in": "body",
"required": true,
"schema": {
"type": "object",
"properties": {
"File": {
"type": "string",
"format": "byte",
"description": "Insert file content"
}
}
},
"x-ms-visibility": "important"
}
],
"operationId": "ConvertFileToPdf",
"description": "Convert a document (Word, Powerpoint, Excel, ..) to a PDF-File",
"x-ms-visibility": "important"
}
}
},
"definitions": {},
"parameters": {},
"parameters": {
"fileName": {
"x-ms-summary": "File name",
"required": false,
"in": "header",
"name": "FileName",
"description": "Use only if 'Extract from File name' is selected in File extension",
"x-ms-visibility": "important",
"type": "string"
},
"fileType": {
"x-ms-summary": "File extension",
"x-ms-dynamic-values": {
"operationId": "GetFileExtensions",
"value-path": "name",
"value-title": "name"
},
"required": true,
"in": "header",
"name": "FileExtension",
"description": "Select file extension",
"x-ms-visibility": "important",
"type": "string"
}
},
"responses": {},
"securityDefinitions": {
"API-Schlüssel": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"uiDefinition": {
"displayName": "API Key",
"description": "Get your API Key on https://power2apps.de/apikey",
"tooltip": "Provide your API Key",
"tooltip": "Get your API Key on https://power2apps.de/apikey",
"constraints": {
"tabIndex": 2,
"clearText": false,
Expand Down