The Functions service allows you to create custom behaviour that can be triggered by any supported Appwrite system events or by a predefined schedule.
Appwrite Cloud Functions lets you automatically run backend code in response to events triggered by Appwrite or by setting it to be executed in a predefined schedule. Your code is stored in a secure way on your Appwrite instance and is executed in an isolated environment.
You can learn more by following our Cloud Functions tutorial.
https://<REGION>.cloud.appwrite.io/v1
Create Build
Request
functionId string requiredFunction ID.
deploymentId string requiredDeployment ID.
buildId string requiredBuild unique ID.
Response
204 application/json
POST /functions/{functionId}/deployments/{deploymentId}/builds/{buildId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.create_build('[FUNCTION_ID]', '[DEPLOYMENT_ID]', '[BUILD_ID]')
Create Deployment
Create a new function code deployment. Use this endpoint to upload a new version of your code function. To execute your newly uploaded code, you'll need to update the function's deployment to use your new deployment UID.
This endpoint accepts a tar.gz file compressed with your code. Make sure to include any dependencies your code has within the compressed file. You can learn more about code packaging in the Appwrite Cloud Functions tutorial.
Use the "command" param to set the entry point used to execute your code.
Request
functionId string requiredFunction ID.
entrypoint string requiredEntrypoint File.
code string requiredGzip file with your code package. When used with the Appwrite CLI, pass the path to your code directory, and the CLI will automatically package your code. Use a path that is within the current directory.
activate boolean requiredAutomatically activate the deployment when it is finished building.
Response
202 application/json
POST /functions/{functionId}/deployments
from appwrite.client import Client
from appwrite.input_file import InputFile
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.create_deployment('[FUNCTION_ID]', '[ENTRYPOINT]', InputFile.from_path('file.png'), False)
Create Execution
Trigger a function execution. The returned object will return you the current execution status. You can ping the Get Execution
endpoint to get updates on the current execution status. Once this endpoint is called, your function execution process will start asynchronously.
Request
functionId string requiredFunction ID.
data string String of custom data to send to function.
async boolean Execute code in the background. Default value is false.
Response
201 application/json
Rate limits
This endpoint is not limited when using Server SDKs with API keys. If you are using SSR with
setSession
, these rate limits will still apply. Learn more about SSR rate limits.The limit is applied for each unique limit key.
Time frameAttemptsKey1 minutes 60 requests IP + USER ID
POST /functions/{functionId}/executions
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.create_execution('[FUNCTION_ID]')
Create Function
Create a new function. You can pass a list of permissions to allow different project users or team with access to execute the function using the client API.
Request
functionId string requiredFunction ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name string requiredFunction name. Max length: 128 chars.
execute array requiredAn array of strings with execution roles. By default no user is granted with any execute permissions. learn more about permissions. Maximum of 100 roles are allowed, each 64 characters long.
runtime string requiredExecution runtime.
events array Events list. Maximum of 100 events are allowed.
schedule string Schedule CRON syntax.
timeout integer Function maximum execution time in seconds.
enabled boolean Is function enabled?
Response
201 application/json
POST /functions
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.create('[FUNCTION_ID]', '[NAME]', ["any"], 'node-14.5')
Create Variable
Create a new function variable. These variables can be accessed within function in the env
object under the request variable.
Request
functionId string requiredFunction unique ID.
key string requiredVariable key. Max length: 255 chars.
value string requiredVariable value. Max length: 8192 chars.
Response
201 application/json
POST /functions/{functionId}/variables
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.create_variable('[FUNCTION_ID]', '[KEY]', '[VALUE]')
Get Deployment
Get a code deployment by its unique ID.
Request
functionId string requiredFunction ID.
deploymentId string requiredDeployment ID.
Response
200 application/json
GET /functions/{functionId}/deployments/{deploymentId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.get_deployment('[FUNCTION_ID]', '[DEPLOYMENT_ID]')
Get Execution
Get a function execution log by its unique ID.
Request
functionId string requiredFunction ID.
executionId string requiredExecution ID.
Response
200 application/json
GET /functions/{functionId}/executions/{executionId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.get_execution('[FUNCTION_ID]', '[EXECUTION_ID]')
Get Function
Get a function by its unique ID.
Request
functionId string requiredFunction ID.
Response
200 application/json
GET /functions/{functionId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.get('[FUNCTION_ID]')
Get Variable
Get a variable by its unique ID.
Request
functionId string requiredFunction unique ID.
variableId string requiredVariable unique ID.
Response
200 application/json
GET /functions/{functionId}/variables/{variableId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.get_variable('[FUNCTION_ID]', '[VARIABLE_ID]')
List Deployments
Get a list of all the project's code deployments. You can use the query params to filter your results.
Request
functionId string requiredFunction ID.
queries array Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: entrypoint, size, buildId, activate
search string Search term to filter your list results. Max length: 256 chars.
Response
200 application/json
GET /functions/{functionId}/deployments
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.list_deployments('[FUNCTION_ID]')
List Executions
Get a list of all the current user function execution logs. You can use the query params to filter your results.
Request
functionId string requiredFunction ID.
queries array Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: trigger, status, statusCode, duration
search string Search term to filter your list results. Max length: 256 chars.
Response
200 application/json
GET /functions/{functionId}/executions
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.list_executions('[FUNCTION_ID]')
List Functions
Get a list of all the project's functions. You can use the query params to filter your results.
Request
queries array Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, enabled, runtime, deployment, schedule, scheduleNext, schedulePrevious, timeout
search string Search term to filter your list results. Max length: 256 chars.
Response
200 application/json
GET /functions
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.list()
List runtimes
Get a list of all runtimes that are currently active on your instance.
Response
200 application/json
GET /functions/runtimes
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.list_runtimes()
List Variables
Get a list of all variables of a specific function.
Request
functionId string requiredFunction unique ID.
Response
200 application/json
GET /functions/{functionId}/variables
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.list_variables('[FUNCTION_ID]')
Update Function
Update function by its unique ID.
Request
functionId string requiredFunction ID.
name string requiredFunction name. Max length: 128 chars.
execute array requiredAn array of strings with execution roles. By default no user is granted with any execute permissions. learn more about permissions. Maximum of 100 roles are allowed, each 64 characters long.
events array Events list. Maximum of 100 events are allowed.
schedule string Schedule CRON syntax.
timeout integer Maximum execution time in seconds.
enabled boolean Is function enabled?
Response
200 application/json
PUT /functions/{functionId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.update('[FUNCTION_ID]', '[NAME]', ["any"])
Update Function Deployment
Update the function code deployment ID using the unique function ID. Use this endpoint to switch the code deployment that should be executed by the execution endpoint.
Request
functionId string requiredFunction ID.
deploymentId string requiredDeployment ID.
Response
200 application/json
PATCH /functions/{functionId}/deployments/{deploymentId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.update_deployment('[FUNCTION_ID]', '[DEPLOYMENT_ID]')
Update Variable
Update variable by its unique ID.
Request
functionId string requiredFunction unique ID.
variableId string requiredVariable unique ID.
key string requiredVariable key. Max length: 255 chars.
value string Variable value. Max length: 8192 chars.
Response
200 application/json
PUT /functions/{functionId}/variables/{variableId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.update_variable('[FUNCTION_ID]', '[VARIABLE_ID]', '[KEY]')
Delete Deployment
Delete a code deployment by its unique ID.
Request
functionId string requiredFunction ID.
deploymentId string requiredDeployment ID.
Response
204 application/json
DELETE /functions/{functionId}/deployments/{deploymentId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.delete_deployment('[FUNCTION_ID]', '[DEPLOYMENT_ID]')
Delete Function
Delete a function by its unique ID.
Request
functionId string requiredFunction ID.
Response
204 application/json
DELETE /functions/{functionId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.delete('[FUNCTION_ID]')
Delete Variable
Delete a variable by its unique ID.
Request
functionId string requiredFunction unique ID.
variableId string requiredVariable unique ID.
Response
204 application/json
DELETE /functions/{functionId}/variables/{variableId}
from appwrite.client import Client
from appwrite.services.functions import Functions
client = Client()
(client
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
functions = Functions(client)
result = functions.delete_variable('[FUNCTION_ID]', '[VARIABLE_ID]')