@mywebapi.com/sdk - v0.1.0
    Preparing search index...

    Interface TradePlatform

    A trade platform the authenticated principal can access.

    Shape mirrors the server TradePlatform entity (serialized camelCase by STJ). Known fields confirmed against a live server response (2026-06-26). The index signature absorbs extra fields so client code does not break if the server adds properties in future versions.

    interface TradePlatform {
        created?: string | null;
        id: string;
        login?: number | null;
        name?: string | null;
        organization?: { created: string; id: string; name: string } | null;
        organizationId?: string | null;
        type?: string | number | null;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    created?: string | null

    ISO 8601 creation timestamp of this platform record.

    id: string

    Platform GUID — pass as tradePlatform to every MT4/MT5 endpoint.

    login?: number | null

    Manager login used for this platform connection.

    name?: string | null

    Human-readable display name (e.g. "Demo MT4 London").

    organization?: { created: string; id: string; name: string } | null

    Nested organization object — id + name + created timestamp.

    organizationId?: string | null

    Organization (tenant) GUID this platform belongs to.

    type?: string | number | null