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 CreateEnvironmentService succeeds.

Payload

{
    type: 'environment.created',
    data: {
        environment: {
            id: string
            name: string
            slug: string
            projectId: string
            createdAt: string
        }
    }
}

Example

{
    "type": "environment.created",
    "data": {
        "environment": {
            "id": "0192a1b2-c3d4-7000-8000-000000000020",
            "name": "production",
            "slug": "production",
            "projectId": "0192a1b2-c3d4-7000-8000-000000000010",
            "createdAt": "2026-05-31T10:40:00.000Z"
        }
    }
}