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 CreateProjectService succeeds. Fires for both dashboard creates and v1 API POST /projects.

Payload

{
    type: 'project.created',
    data: {
        project: {
            id: string         // UUID
            name: string
            slug: string
            icon: string | null
            createdAt: string  // ISO timestamp
        }
    }
}

Example

{
    "type": "project.created",
    "data": {
        "project": {
            "id": "0192a1b2-c3d4-7000-8000-000000000010",
            "name": "billing-service",
            "slug": "billing-service",
            "icon": null,
            "createdAt": "2026-05-31T10:33:20.123Z"
        }
    }
}