Help
Mariusz_S
7 - App Architect
7 - App Architect
since ‎Apr 09, 2020
‎Nov 13, 2023

User Statistics

  • 54 Posts
  • 4 Solutions
  • 95 Kudos given
  • 25 Kudos received

User Activity

I’m working with an API that returns a JSON object from the the function below: await remoteFetchAsync(url, getLabelOptions) .then((resp) => resp.json()) .then(function(data) { pdfstring = data.label; }) .then() .catch(funct...
I have a code that looks like this: await createPackage(oderSummary); async function createPackage(oderSummary) { let pickPosition = true; let lineItemsArr = []; const r = Object.keys(oderSummary[0]).map((v) => ({ [v]: oderSummary.map((c) =...
I have a table structured liked this: The second column returns the “Click” count for some job postings. Knowing their record IDs (returned in the “lookup” column) how can I somehow mark the first two corresponding records in the other table without...
Hi all, Had a bit of inspiration from this cool script shared by @Jeremy_Oglesby. My goal was to have an easy solution to categorize the transactions imported from all of my accounts/financial institutions. Here’s the scenario: There will be some fre...
Hi all, Is there a way I could pass markdown - result of script run to automations? Like in the example here where the output table could be send in an email?