- 
                Notifications
    You must be signed in to change notification settings 
- Fork 1.4k
Add P2A certified-connector/Converter #1558
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
          
     Merged
      
      
    
  
     Merged
                    Changes from all commits
      Commits
    
    
            Show all changes
          
          
            17 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      157701a
              
                Add certified-connector/Converter
              
              
                 078cc6d
              
                Update certified-connectors/Converter
              
              
                 de947aa
              
                Merge remote-tracking branch 'upstream/master' into dev
              
              
                 8b4135e
              
                Merge remote-tracking branch 'upstream/master' into dev
              
              
                 7a1c571
              
                Converter
              
              
                 0cba1c2
              
                Converter
              
              
                 9ecf9b7
              
                Converter
              
              
                 bf15080
              
                Converter
              
              
                 68fd552
              
                Converter
              
              
                 e801aec
              
                Converter
              
              
                 f8b2362
              
                COnverter
              
              
                 50fe2ad
              
                Converter
              
              
                 d9e91a4
              
                Converter
              
              
                 9551593
              
                COnverter
              
              
                 327caeb
              
                Converter
              
              
                 2a11e6b
              
                Converter
              
              
                 29b0315
              
                Converter
              
              
                 File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # P2A Converter for Power Automate | ||
| Convert your data easily from one format to another with Microsoft Power Automate or Azure Logic Apps solutions and with our data conversion services CSV to JSON, JSON to CSV, ... | ||
|  | ||
| ## Setup | ||
| - [Get Key](https://www.power2apps.de/apikey/) get your key without registration | ||
|  | ||
| ## Supported Operations | ||
|  | ||
| ### Convert CSV to JSON | ||
| Convert CSV-Data to JSON | ||
|  | ||
| ### Convert JSON to CSV | ||
| Convert JSON To CSV-Data | ||
|  | ||
| ### Convert CSV To Excel | ||
| Convert CSV-Data to Excel-File | ||
|  | ||
| ### Convert SharePoint Search Results | ||
| Convert SharePoint search results to a simple list | 
        
          
  
    
      
          
            199 changes: 199 additions & 0 deletions
          
          199 
        
  certified-connectors/Converter/apiDefinition.swagger.json
  
  
      
      
   
        
      
      
    
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,199 @@ | ||
| { | ||
| "swagger": "2.0", | ||
| "info": { | ||
| "title": "Converter", | ||
| "description": "Enables conversion of different data formats from one to another.", | ||
| "version": "1.0", | ||
| "contact": { | ||
| "name": "Power2Apps Support", | ||
| "url": "https://www.power2apps.de/kontakt", | ||
| "email": "kontakt@power2apps.de" | ||
| } | ||
| }, | ||
| "x-ms-connector-metadata": [ | ||
| { | ||
| "propertyName": "Website", | ||
| "propertyValue": "https://www.power2apps.de" | ||
| }, | ||
| { | ||
| "propertyName": "Privacy policy", | ||
| "propertyValue": "https://www.power2apps.de/datenschutz" | ||
| }, | ||
| { | ||
| "propertyName": "Categories", | ||
| "propertyValue": "Content and Files;Data" | ||
| } | ||
| ], | ||
| "host": "webapiconverterservice20211014190508.azurewebsites.net", | ||
| "basePath": "/Converter", | ||
| "schemes": [ | ||
| "https" | ||
| ], | ||
| "paths": { | ||
| "/ConvertCsvdataToExcel": { | ||
| "post": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "OK", | ||
| "schema": { | ||
| "type": "string" | ||
| } | ||
| } | ||
| }, | ||
| "operationId": "ConvertCsvdataToExcel", | ||
| "consumes": [ | ||
| "text/plain" | ||
| ], | ||
| "produces": [ | ||
| "application/json" | ||
| ], | ||
| "summary": "Convert CSV To Excel", | ||
| "description": "Convert CSV-Data to Excel-File", | ||
| "x-ms-visibility": "important", | ||
| "parameters": [ | ||
| { | ||
| "name": "CSV-Data", | ||
| "in": "body", | ||
| "required": true, | ||
| "schema": { | ||
| "type": "string", | ||
| "x-ms-visibility": "important" | ||
| }, | ||
| "x-ms-visibility": "important" | ||
| } | ||
| ] | ||
| } | ||
| }, | ||
| "/ConvertCsvdataToJson": { | ||
| "post": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "OK", | ||
| "schema": { | ||
| "type": "string" | ||
| } | ||
| } | ||
| }, | ||
| "operationId": "ConvertCsvdataToJson", | ||
| "consumes": [ | ||
| "text/plain" | ||
| ], | ||
| "produces": [ | ||
| "application/json" | ||
| ], | ||
| "x-ms-visibility": "important", | ||
| "summary": "Convert CSV To JSON", | ||
| "description": "Convert CSV-Data to JSON", | ||
| "parameters": [ | ||
| { | ||
| "name": "CSV-Data", | ||
| "in": "body", | ||
| "required": true, | ||
| "schema": { | ||
| "type": "string", | ||
| "x-ms-visibility": "important" | ||
| }, | ||
| "x-ms-visibility": "important" | ||
| } | ||
| ] | ||
| } | ||
| }, | ||
| "/ConvertJsonToCsvdata": { | ||
| "post": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "OK", | ||
| "schema": { | ||
| "type": "string" | ||
| } | ||
| } | ||
| }, | ||
| "summary": "Convert JSON To CSV", | ||
| "operationId": "ConvertJsonToCsvdata", | ||
| "parameters": [ | ||
| { | ||
| "name": "JSON", | ||
| "in": "body", | ||
| "required": true, | ||
| "schema": { | ||
| "type": "string", | ||
| "x-ms-visibility": "important" | ||
| }, | ||
| "x-ms-visibility": "important" | ||
| } | ||
| ], | ||
| "description": "Convert JSON-Data to CSV-Data", | ||
| "x-ms-visibility": "important" | ||
| } | ||
| }, | ||
| "/ConvertSharePointSearchResults": { | ||
| "post": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "OK", | ||
| "schema": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "object", | ||
| "properties": { | ||
| "title": { | ||
| "type": "string", | ||
| "description": "Title of SharePoint-Ressource", | ||
| "title": "title" | ||
| }, | ||
| "link": { | ||
| "type": "string", | ||
| "description": "Link of SharePoint-Ressource", | ||
| "title": "link" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "summary": "Convert SharePoint Search Results", | ||
| "description": "Convert SharePoint search results to a simple list", | ||
| "operationId": "ConvertSharePointSearchResults", | ||
| "x-ms-visibility": "important", | ||
| "parameters": [ | ||
| { | ||
| "name": "Content-Type", | ||
| "in": "header", | ||
| "required": true, | ||
| "type": "string", | ||
| "default": "application/json", | ||
| "x-ms-visibility": "important", | ||
| "description": "SharePoint Json-Result", | ||
| "x-ms-summary": "SP-Result" | ||
| }, | ||
| { | ||
| "name": "JSON", | ||
| "in": "body", | ||
| "required": true, | ||
| "schema": { | ||
| "type": "string", | ||
| "x-ms-visibility": "important" | ||
| }, | ||
| "x-ms-visibility": "important" | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| }, | ||
| "definitions": {}, | ||
| "parameters": {}, | ||
| "responses": {}, | ||
| "securityDefinitions": { | ||
| "API-Schlüssel": { | ||
| "type": "apiKey", | ||
| "in": "header", | ||
| "name": "ApiKey" | ||
| } | ||
| }, | ||
| "security": [ | ||
| { | ||
| "API-Schlüssel": [] | ||
| } | ||
| ], | ||
| "tags": [] | ||
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| { | ||
| "properties": { | ||
| "connectionParameters": { | ||
| "api_key": { | ||
| "type": "securestring", | ||
| "uiDefinition": { | ||
| "displayName": "Api-Key (free on \"https://power2apps.de/apikey\")", | ||
| "description": "\"Api-Key (free on \"https://power2apps.de/apikey\")\" f\u00fcr diese API", | ||
| "tooltip": "Stellen Sie \"Api-Key (free on \"https://power2apps.de/apikey\")\" bereit.", | ||
| "constraints": { | ||
| "tabIndex": 2, | ||
| "clearText": false, | ||
| "required": "true" | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "iconBrandColor": "#da3b01", | ||
| "capabilities": [], | ||
| "publisher": "Power2Apps P2A GmbH", | ||
| "stackOwner": "Power2Apps P2A GmbH" | ||
| } | ||
| } | ||
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.