hiimalexok
hiimalexok
TTwenty
Created by hiimalexok on 8/12/2024 in #❓︱help
Can't login to Cloud!
No description
7 replies
TTwenty
Created by hiimalexok on 6/26/2024 in #❓︱help
Has anybody gotten the latest version of Twenty CRM successfully self-hosted on Railway?
Hi, all. Unfortunately, I've been stuck on this for two weeks, and I could really use some help. There's a template on Railway created by Félix Malfait for setting up Twenty CRM, but it installs version 0.3.3. It's using the deprecated docker images of Twenty, and I would love it if someone provided either some instructions as to how to set up this new version, or simply created a deployable template. I love Twenty, and I really want to use the latest features. Thank you!
8 replies
TTwenty
Created by hiimalexok on 6/8/2024 in #❓︱help
How to upgrade to latest version?
I'm using Railway to self-host Twenty. I have the latest version of frontend, server, and Postgres db, yet, I'm on version 0.3.3. Is there a way to upgrade to the latest version?
2 replies
TTwenty
Created by hiimalexok on 6/7/2024 in #❓︱help
Creating Company & Opportunity Returning 500 On REST API
Hello! I'm trying to create a company and an opportunity at the same time. I'm hitting /rest/companies and passing the following body: { "name": "COMPANY NAME", "opportunities": [ { "name": "OPPORTUNITY NAME" } ] } Here's my code specifically:
await fetch(
"https://my-url.com/rest/companies",
{
method: "POST",
headers: {
"Content-Type": "application/json",
Accept: "application/json",
Authorization: `Bearer ${process.env.CRM_API_KEY}`,
},
body: JSON.stringify({
name: body.businessName,
opportunities: [
{
name: "Test Opportunity",
},
],
}),
},
);
await fetch(
"https://my-url.com/rest/companies",
{
method: "POST",
headers: {
"Content-Type": "application/json",
Accept: "application/json",
Authorization: `Bearer ${process.env.CRM_API_KEY}`,
},
body: JSON.stringify({
name: body.businessName,
opportunities: [
{
name: "Test Opportunity",
},
],
}),
},
);
and it's returning the following: "error": "AxiosError: Request failed with status code 500. Please check your query." Am I missing something obvious?
7 replies