thomast
thomast
TTwenty
Created by Dream on 4/15/2025 in #❓︱help
Time based field update with workflow
At some point we'll propose app connections. You could link your google sheet or other softwares that manage csv. Then you'll be able to listen at csv creations as a trigger to your workflow
7 replies
TTwenty
Created by Zou on 4/17/2025 in #❓︱help
What does this do on self host?
and this is not related to multi workspace
5 replies
TTwenty
Created by Zou on 4/17/2025 in #❓︱help
What does this do on self host?
Allow support team access means this user can be impersonated. Impersonation can be done from the settings page, admin panel section. But the user needs to have the field "canImpersonate" set to true in the DB
5 replies
TTwenty
Created by lolitsme007# on 4/16/2025 in #❓︱help
signup
if you want to signup into a new workspace, make sure you do it from http://app.localhost:3001/welcome. The error saying the user does not have access means you tried to sign in from the url of tim's workspace
3 replies
TTwenty
Created by lolitsme007# on 4/16/2025 in #❓︱help
signup
you cannot signup to an already existing workspace. You need to log in using [email protected]. Then you invite your other email from the settings page
3 replies
TTwenty
Created by Marian on 4/16/2025 in #❓︱help
Are webhook secrets actually used? How?
@martmull
19 replies
TTwenty
Created by Dream on 4/15/2025 in #❓︱help
Time based field update with workflow
Well done for getting this work 👌 Calling the api to fetch the people one by one will work, but it may take some time. You can fetch all people at once by doing:
const getAllPeopleUrl = () => https://<REDACTED_DOMAIN>/rest/people?depth=0`;
const peopleResp = await fetch(...)
const peopleData = await peopleResp.json();
const allPeople = peopleData.data?.people || [];
const getAllPeopleUrl = () => https://<REDACTED_DOMAIN>/rest/people?depth=0`;
const peopleResp = await fetch(...)
const peopleData = await peopleResp.json();
const allPeople = peopleData.data?.people || [];
And then only you start your loop.
7 replies
TTwenty
Created by Torx on 4/10/2025 in #❓︱help
CRON Jobs fail self Hosted mode
cc @Guillaume since @Raphaël is not available 🙏
10 replies
TTwenty
Created by Dream on 4/15/2025 in #❓︱help
Time based field update with workflow
Soon we will have additional actions that will avoid writing code and talking to the api yourself : - an action to search records easily - an action to loop over a list of records - the action to update a record already exists but since you want to check a list of records it won't work in your use case
7 replies
TTwenty
Created by Dream on 4/15/2025 in #❓︱help
Time based field update with workflow
Hi @Dream, you need : - a cron trigger that runs daily. It already exists - a code action that will fetch all records using twenty api. It will loop over all records, and check the expiry date. Then you will use the twenty api again to update the expired field if needed Available doc for the api is there https://twenty.com/developers/rest-api/core#/
7 replies
TTwenty
Created by pmckeown on 3/27/2025 in #❓︱help
Workflow Documentation
Hi @Dream, you have two options here: 1. Use the trigger that listen to record updates, as shown above. Then the updated record will be available in you code step 2. Use a manual trigger, and set the type of the record you wanna pull in the code step. Then you can activate the workflow, select the record you want to update and open the command menu on the right. You will see your workflow that you can execute on this record
11 replies
TTwenty
Created by Amiteshwar on 4/13/2025 in #❓︱help
Can't add/edit Objects with Admin role
cc @marie
5 replies
TTwenty
Created by Torx on 4/10/2025 in #❓︱help
CRON Jobs fail self Hosted mode
cc @Raphaël
10 replies
TTwenty
Created by NebulaM78 on 4/8/2025 in #❓︱help
import contacts
let's assume you have your contact object that has a many to one relation with company. If you name this relation field "company" on your contact object, it will create a field "companyId" in DB. Then in your csv the companyId column will match the comanyId column on your contact field
8 replies
TTwenty
Created by NebulaM78 on 4/8/2025 in #❓︱help
import contacts
btw are you self hosting or cloud?
8 replies
TTwenty
Created by NebulaM78 on 4/8/2025 in #❓︱help
import contacts
your contact object needs to have a many-to-one relation with company. Is it the case? 🙂
8 replies
TTwenty
Created by NebulaM78 on 4/8/2025 in #❓︱help
import contacts
So you have a contact object, which has a relation with a specific company? Or is it a relation field on company with another object?
8 replies
TTwenty
Created by soundworker2003 on 4/8/2025 in #❓︱help
Env Variables and Health Status are not clickable.
@marie I think this is related to permissions?
5 replies
TTwenty
Created by Torinet on 4/4/2025 in #❓︱help
When exporting People list, how to export company Name instead of company ID?
Hi @Torinet, unfortunately we do not propose an export including relations today. @Félix do we plan on adding it at some point?
3 replies