@archastro/sdk
    Preparing search index...

    Interface Sandbox

    An isolated developer sandbox environment used for testing integrations without affecting production data or sending real emails.

    interface Sandbox {
        created_at?: string;
        expires_at?: string | null;
        id: string;
        keys?: SandboxKey[];
        name: string;
        org?: string | null;
        org_logo?: ImageSource | null;
        org_name?: string | null;
        purpose?: string | null;
        slug: string;
        updated_at?: string;
    }
    Index

    Properties

    created_at?: string

    When this sandbox was created (ISO 8601).

    expires_at?: string | null

    When an eval sandbox expires and becomes eligible for platform cleanup. null for ordinary developer sandboxes.

    id: string

    Sandbox ID (dsb_...).

    keys?: SandboxKey[]

    API keys associated with this sandbox. null if keys were not loaded with this response.

    name: string

    Human-readable display name for the sandbox.

    org?: string | null

    Organization ID this sandbox is scoped to, or null for an app-level sandbox.

    org_logo?: ImageSource | null

    Logo of the owning organization, when present.

    org_name?: string | null

    Display name of the owning organization, when org-scoped.

    purpose?: string | null

    Sandbox purpose marker. "eval" marks a remote-eval sandbox; null for ordinary developer sandboxes.

    slug: string

    URL-safe identifier for the sandbox, unique within the application (e.g. "my-sandbox").

    updated_at?: string

    When this sandbox was last modified (ISO 8601).