I have appwrite instance deployed locally. I have created a function and deployed successfully. How can I call that function from postman through HTTP request?
My local instance URL: http://localhost/v1
Function path as per appwrite.json
is functions/greetings
I am passing the required projectId and API-KEY. I am using the below URL to call the function:
http://localhost/v1/functions/greetings
But, this is not working. Giving the below error:
{
"message": "Function with the requested ID could not be found.",
"code": 404,
"type": "function_not_found",
"version": "1.2.0"
}
But, the function is available in the deployments.