David
David
TTwenty
Created by armochillo on 2/12/2025 in #❓︱help
Selfhosted API not working ;(
Exception Captured { user: undefined, workspace: undefined } [ TypeError: Cannot read properties of undefined (reading 'replace') at formatMessage (/app/packages/twenty-server/dist/src/engine/api/rest/errors/RestApiException.js:14:41) at /app/packages/twenty-server/dist/src/engine/api/rest/errors/RestApiException.js:26:43 at Array.map (<anonymous>) at new RestApiException (/app/packages/twenty-server/dist/src/engine/api/rest/errors/RestApiException.js:26:30) at RestApiService.call (/app/packages/twenty-server/dist/src/engine/api/rest/rest-api.service.js:85:19) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) at async RestApiCoreService.get (/app/packages/twenty-server/dist/src/engine/api/rest/core/rest-api-core.service.js:26:16) at async RestApiCoreController.handleApiGet (/app/packages/twenty-server/dist/src/engine/api/rest/core/controllers/rest-api-core.controller.js:39:24) ]
55 replies
TTwenty
Created by armochillo on 2/12/2025 in #❓︱help
Selfhosted API not working ;(
i should add, the error log on the server:Exception Captured { user: undefined, workspace: undefined } [ Error: Field metadata for field "query" is missing in object metadata at formatData (/app/packages/twenty-server/dist/src/engine/twenty-orm/utils/format-data.util.js:25:19) at WorkspaceRepository.formatData (/app/packages/twenty-server/dist/src/engine/twenty-orm/repository/workspace.repository.js:283:47) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) at async WorkspaceRepository.save (/app/packages/twenty-server/dist/src/engine/twenty-orm/repository/workspace.repository.js:85:43) at async RestApiCoreServiceV2.createOne (/app/packages/twenty-server/dist/src/engine/api/rest/core/rest-api-core-v2.service.js:45:31) at async RestApiCoreController.handleApiPost (/app/packages/twenty-server/dist/src/engine/api/rest/core/controllers/rest-api-core.controller.js:47:24) ] Error Response: { statusCode: 400, error: 'Error', messages: [ 'Field metadata for field "query" is missing in object metadata' ] }
55 replies
TTwenty
Created by armochillo on 2/12/2025 in #❓︱help
Selfhosted API not working ;(
After this was fix, it took me to the error: Field metadata for field "query" is missing in object metadata and this is where I am stuck, as I think something is not pass right to the "format-data.util.js" and I don't want to brake anything else LOL
55 replies
TTwenty
Created by armochillo on 2/12/2025 in #❓︱help
Selfhosted API not working ;(
That allow me to see in the log the api url and where they are going.
55 replies
TTwenty
Created by armochillo on 2/12/2025 in #❓︱help
Selfhosted API not working ;(
let RestApiService = class RestApiService { async call(apiType, request, data) { let baseUrl; // Debugging: Log the base URL console.log('Base URL:', baseUrl); // Ensure request.path is defined if (!request.path) { console.error('Request Path is undefined'); throw new Error('Request Path is required'); } // Determine the URL based on the API type let url; if (apiType === "rest") { url = ${baseUrl.replace(/\/+$/, '')}/${request.path.replace(/^\/+/, '')}; } else if (apiType === "core") { url = ${baseUrl}/graphql; } else if (apiType === "metadata") { url = ${baseUrl}/metadata; } else { throw new Error(Unknown API type: ${apiType}); } // Debugging: Log the constructed URL console.log('API URL:', url); let response; try { // Make the HTTP request response = await this.httpService.axiosRef.post(url, data, { headers: { 'Content-Type': 'application/json', Authorization: request.headers.authorization } }); } catch (err) { // Log the error response console.error('Error Response:', err.response?.data err.message); throw new _RestApiException.RestApiException(err.response?.data?.errors ['Unknown error']); } // Validate the response if (!response || !response.data) { console.error('Invalid Response:', response); throw new _RestApiException.RestApiException(['Invalid response from server']); } if (response.data.errors?.length) { console.error('Response Errors:', response.data.errors); throw new _RestApiException.RestApiException(response.data.errors); } return response; }
55 replies
TTwenty
Created by armochillo on 2/12/2025 in #❓︱help
Selfhosted API not working ;(
Hello Guys, I put that aside the last 2 weeks, but I got back into today and spend quite some time today on it. I am far from being a professional coder. However, I did find some issue and did fix some code and enable logging to find the problem. By the way, I have also updated to 0.43. The biggest issue, is the if you make any api request, with the REST api, the url is automatically rewrite to graphql. so I (taking all the credit for chatgpt here) modify the rest-api.service.js file on the server. The modification touch the async call:
55 replies
TTwenty
Created by armochillo on 2/12/2025 in #❓︱help
Selfhosted API not working ;(
@armochillo @charles Not trying to hijack this topic, but if that can help anyone, I am having the same issue. Running 0.41 as well. I am using n8n with the community-node. I run n8n in a docker, same for twenty, both are on the same docker network. I get a successful connection using the credential: http://twenty-server-1:3000. However, for any api call, I always have a error 500. When I use a temp container and curl using this command: sudo docker run --rm --network container:n8n curlimages/curl:latest curl -I --request GET \ --url 'http://twenty-server-1:3000/rest/companies/490a5309-8239-4b1f-be34-72e51cfa85ab?depth=1' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer "API KEY"' I get this error: HTTP/1.1 500 Internal Server Error X-Powered-By: Express Access-Control-Allow-Origin: * Access-Control-Allow-Methods: GET,HEAD,PUT,PATCH,POST,DELETE Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept Content-Type: application/json; charset=utf-8 Date: Mon, 17 Feb 2025 16:29:39 GMT Connection: keep-alive Keep-Alive: timeout=5 Content-Length: 0 Same when I try from the developer section on twenty.com, I put in my external domain name with my api key, and I am able to see the api call documentation, but I get the same error 500 return on any api calls. No logs show either way in the server logs. Is there any feature flags that need to be activated or variable that need to be set in the environment?
55 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
@Guillaume You are a machine, it is resolved 🙂 I guess I missed those value change in the update, it was not on the update documentation page, but they are in the environment variable page. If this thread can help any other person doing this upgrade.
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
No description
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
good catch! my .env file was correct, but my docker file had the typo 🙂 I see now Microsoft in the Security Setting
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
No description
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
@Guillaume I did the update to 0.41 and now the sync is broken 🫣 I did saw in the update documentation that the .env Variable "AUTH_MICROSOFT_TENANT_ID" is now removed. Could it have anything to do with? The microsoft option as an account is now gone from the account screen in the setting. Just checking if anyone else have this problem, and if their is a fix
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
haa don't know about work flow, sorry. But my email and calendar are working
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
It is now resolve for me
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
that resolve the error in the interface
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
No description
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
No description
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
Thank you so much all resolve
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
so freaking close LOL, just ran the yarn command from the documentation and it works 🙂
69 replies
TTwenty
Created by David on 1/14/2025 in #❓︱help
Microsoft email and calendar integration
No description
69 replies