I'm trying to create a function that replicates a newly created user to a document in a collection(triggered by event)
I just get a Server Error occured trying to replicate the user: doge@doge.com in the logs.
TypeScript
import { Client, Databases, Permission, Role } from 'node-appwrite';
export default async ({ req, res, log, error }) => {
const client = new Client();
client
.setEndpoint(process.env.API_ENDPOINT)
.setProject(process.env.PROJECT_ID)
.setKey(process.env.APPWRITE_API_KEY);
const databases = new Databases(client);
const { $id, name, email } = req.body
try {
await databases.createDocument(process.env.DB_ID, process.env.COLLECTION_ID, $id, {
name,
email,
},
[
Permission.read(Role.any()),
Permission.update(Role.user($id))
])
} catch (e) {
error(`Error: ${e} occurred trying to replicate the user: ${email}.`)
return res.send("Error occurred");
}
return res.send("User created");
};
Any ideas?
TL;DR
Function is trying to duplicate a user into a document but encountering a server error. Check the API key and permissions. Make sure your endpoint, project ID, and database IDs are correct.Recommended threads
- My projects were deleted
Hello everyone, My projects were for some reason deleted. I got an email informing me about project inactivity, when I clicked to activate it again, it was sil...
- Dotnet functions on cloud
I'm trying to deploy my .Net8 functions to my project on cloud.appwrite through the CLI. I'm getting this error.
- All projects deleted
Hello, from the appwrite console last week I re-activated some of my old project and published them, yesterday I checked and none of the apps were working, now ...