Upcoming database upgrades. to improve our reliability at 03:30 UTC on Feb. 25 / 7:30pm PT on Feb. 24. Some users may briefly experience slow load times or error messages. Learn more here
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?
Hey Greetje, you can integrate Toggl with Airtable using Toggl API.That way you could create time entries via Toggl's native mobile apps and keep your reporting in Airtable.If you're looking for someone to build this please let me know!
Hey @Ngo_Hoang_Tuan,
you can’t use an object in the body field. You need to use JSON.stringify()
Here’s the updated script:
let body = {
"name": "Tenali Ramakrishna",
"gender": "male",
"email": "tenali.ramakrishna2@15ce.com",...
As I understand and according to the documentation if you don’t specify the contentType it defaults to
'application/x-www-form-urlencoded' or 'multipart/form-data'
That’s why you’re getting error 422. The server can’t read that.
If the structure of e...
// Because payload is a JavaScript object, it is interpreted as
// as form data. (No need to specify contentType; it automatically
// defaults to either 'application/x-www-form-urlencoded'
// or 'multipart/form-data')
Since you’re passing a nested o...
Glad you like it @Brennan_Ward!
I’ve made a quick fix so the input from the user is absolute value (no need to type “-”) regardless if it’s a debit or credit but would indicate the type of transaction in the workflow i.e. “-” for debit transactions.
...