Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.envless.cloud/llms.txt

Use this file to discover all available pages before exploring further.

When it fires

After DeleteVariablesService succeeds. Used by the bulk delete endpoint.

Payload

{
    type: 'variable.bulk_deleted',
    data: {
        environmentId: string
        count: number
        variables: Array<{
            id: string
            name: string
        }>
    }
}

Example

{
    "type": "variable.bulk_deleted",
    "data": {
        "environmentId": "0192a1b2-c3d4-7000-8000-000000000020",
        "count": 2,
        "variables": [
            { "id": "...040", "name": "DATABASE_URL" },
            { "id": "...041", "name": "REDIS_URL" }
        ]
    }
}