Announcing the Appwrite OSS Fund, Learn More! 🤑
Docs

Functions List Object

Properties

Name Type Description
total integer

Total number of functions documents that matched your query.

functions function[]

List of functions.

Examples

JSON

{
    "total": 5,
    "functions": {
        "$id": "5e5ea5c16897e",
        "execute": [
            "role:member"
        ],
        "name": "My Function",
        "dateCreated": 1592981250,
        "dateUpdated": 1592981257,
        "status": "enabled",
        "runtime": "python-3.8",
        "deployment": "5e5ea5c16897e",
        "vars": {
            "key": "value"
        },
        "events": [
            "account.create"
        ],
        "schedule": "5 4 * * *",
        "scheduleNext": 1592981292,
        "schedulePrevious": 1592981237,
        "timeout": 1592981237
    }
}