if there is a way an http event can trigger that?
eg: GET /v1/functions/myFuntion
and the function responds then?
Probably, this is what you need https://appwrite.io/docs/client/functions?sdk=web-default#functionsCreateExecution
So basically each time the client hits that end point the function code will run?
Yep, exactly π Keep in mind thisrequires you to use specific method (POST), provide specific headers (x-appwrite-project), and apply specific body structure (json with data string)
POST: /v1/functions/{functionId}/executions
I suppose this end point
thank you so much this was great :)
Recommended threads
- Having issues with login via CLI
``` ~/appwrite ξ° appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...