(...) tances, update existing ones, or perform other operations, and we pass the input for these operations in the body of the request or in a query string. The result of the automation is also returned in json format. If we choose to share data from a data source, we select the appropriate source and optionally define a filter to narrow the scope of the information returned. It is also possible to dynam (...)
(...) function resetIsDirtyInSessionStorage(key = 'WebconBPS_FormIsDirty') { //Get sessionStorage item const raw = sessionStorage.getItem(key); if (!raw) return; //Parse object const obj = json .parse(raw); //Check if is Dirty is true and if yes set it back to false Object.values(obj.mainPlaceholder).forEach(v => { if (v.isDirty) v.isDirty = false; }); //Write modifie (...)
(...) per right: The example code receives two integer parameters and returns their sum. First we have to get out the $Body out of the WEBCON endpoint invoke: $data = ConvertFrom-json $Body The json body set in the configuration of the invoke REST web service action in WEBCON will be explained later and looks like this. There are two required parameters for the summand1 and sum (...)
(...) tate, city) can be set with the parameter "accept-language" in the query url. Be aware of the correct quotes (backtick). let url = `https://nominatim.openstreetmap.org/search?format=json &accept-language=de&addressdetails=1&limit=1&q=${query}`; json result object This is the returned object for the query "Schloss Karlsruhe": Screenshot (...)
(...) be analyzed. The actual query content is placed in the TEXT field. This setup allows the AI model to receive the invoice content, analyze it according to the instructions, and return the result as a json object. The resulting json is then stored in the technical field "_invoice data", serving as a data source for further processing. The query inserted into the AI PROMPT (...)
(...) on(){ // --- persisted preferences --- const LS_KEY = 'signature-tools-prefs'; const defaults = { color: '#ff00ff', width: 2 }; function loadPrefs() { try { return { ...defaults, ...(json .parse(localStorage.getItem(LS_KEY))||{}) }; } catch{ return { ...defaults }; } } function savePrefs(p){ try { localStorage.setItem(LS_KEY, json .stringify(p)); } catch{} } const prefs = (...)
(...) facilitates analysis and searching. The ErrorGuid parameter has been replaced with CorrelationID - a consistent identifier for tracking events. Logging configuration is located in the appsettings.json file within the installation directory of the Portal and Service. Serilog supports the OpenTelemetry standard, enabling unified log transmission, correlation, and processing across various tools. (...)
(...) the form. The final step in configuring the message-sending action is to set up the Request body tab. Here the content of the message sent to the channel is defined. Enter the following json structure: { "body": { "contentType": "html", "content": "Project <b>#{RAW:11565}#</b> has been approved.<br><a href="https://#{EPV:205}#/db/1/a (...)
(...) retrieved via User Defined APIs, which are custom API endpoints configured within the platform. These endpoints execute predefined SQL queries and expose selected internal system tables as structured json responses. Three User Defined APIs were prepared for the purpose of providing data displayed on the dashboard: AI Agents—returns a list of all AI Agents defined in all work (...)
(...) rms a part of the OpenTelemetry project, it is possible to use the Jaeger platform for collecting and processing traces, and the Prometheus tool to receive and analyze metrics. The appsettings.json file With the architectural changes in WEBCON, telemetry configuration is now handled entirely in the appsettings.json file (separately for the Portal and the Service). The otlpsettings.js (...)
(...) eryone, is someone here how understands power query? I got a task to retrieve data from a BPS report in excel to use it for additional analysis. I was able to retrieve the data but transforming the json response to a table is beyond me. Just in case there's someone who would be able to do it but doesn't know how to retrieve the data I add the logic below which can be put into the advanced editor. Y (...)
(...) I haven't found any documentation how to access the current form data. What I know is, that all the formdata is kept in a json property called liteDate.liteModel as a json -object as you can see when calling /api/nav/db/{dbId}/app/{appId}/element/{wfdid}/desktop I guess that this liteModel must be available via javascript. I'm wondering, because there is this form from the offical 2021 release pap (...)
(...) Hello everyone! Have u stumble upon this error when u make a request through the action and map the body on a field? In the body field as mentioned in the picture should be the body , the json but, is shown the type of collection ( System.Collections.Generic.Dictionary`2[System.String,System.Object] )
(...) m/posts/post/starting-workflow-from-the-sharepoint-document-library/54 I've did all the same configurations as the document to try to get it working but my Start BPS column is not displayed. The json code that is in the post needs to be formatted and my final version (for my case) is: { "$schema": "https://developer.microsoft.com/json -schemas/sp/v2/column-formatting.schema.json ", "elmTyp (...)
(...) subworkflow using MS Flow (now called Power Automate) but when I need to configure the Get Token Action I only have the options in the picture and they are premium. Anyone with ideas? Using the json in the column of the item list is not working. Thank you!
(...) kFlow.Base.BusinessLogic.ElementManagement.FormFields.Choose.ChooseFormField.get_AvailableChooseValues() w WebCon.WorkFlow.Web.UILogic.Form.ViewModels.Data.ChooseViewModel.UpdateFromClient(String json ) w WebCon.WorkFlow.Web.UILogic.WFDynamicLite.Rest.Logic.ElementFormLoader.c__DisplayClass8_0.b__1(BaseFormField field) w System.Linq.DataEnumerable.ForEach[T](IEnumerable`1 _this, Action`1 ac (...)
(...) a rule to color backround of a date cell. The condition would be "if the date in the current field is greater than today, then color backround, else dont change the color". Currently the not working json code is: { "content": "=CurrentField", "style": { "background-color": "=if(CurrentField > today, '#FF0000', '')" } } I've also tried different variants of the condition like "dat (...)
(...) Hi all! I am getting a strange warning when deploying a second SDK plugin package to customer environment (see screenshot). The background information is: Both SDK plugins need System.Text.json namespace for serializing / deserializing json objects, which requires a bunch of satellite assemblies to be packaged also. These assemblies are added to each package with a custom Powershell script an (...)
(...) ng like the article Run an SQL procedure https://community.webcon.com/posts/post/the-run-an-sql-procedure-action/230). But, I would like the procedure to generate a .txt file with the results (e.g. json ), and the file to be downloaded using the WEBCON platform (maybe a new process with starting the procedure and preparing a .txt file for download, such as an attachment). Is it possible, if so how?
(...) history of the instance and scroll down to the attachment link, it opens the file just fine. Is this a known issue? Error during saga execution: Unexpected token 'A', "Attachment"... is not valid json SyntaxError: Unexpected token 'A', "Attachment"... is not valid json at json .parse () at application/App.c6e87d.bundle.js:2:569216 at Generator.throw () at m (/application/App.c6e87d.bundle.js:2:3850 (...)