Binance Connector JS
    Preparing search index...

    AccountApi - interface AccountApi

    interface AccountApiInterface {
        adjustCrossMarginMaxLeverage(
            requestParameters: AdjustCrossMarginMaxLeverageRequest,
        ): Promise<RestApiResponse<AdjustCrossMarginMaxLeverageResponse>>;
        disableIsolatedMarginAccount(
            requestParameters: DisableIsolatedMarginAccountRequest,
        ): Promise<RestApiResponse<DisableIsolatedMarginAccountResponse>>;
        enableIsolatedMarginAccount(
            requestParameters: EnableIsolatedMarginAccountRequest,
        ): Promise<RestApiResponse<EnableIsolatedMarginAccountResponse>>;
        getBnbBurnStatus(
            requestParameters?: MarginTradingRestAPI.GetBnbBurnStatusRequest,
        ): Promise<RestApiResponse<MarginTradingRestAPI.GetBnbBurnStatusResponse>>;
        getSummaryOfMarginAccount(
            requestParameters?: GetSummaryOfMarginAccountRequest,
        ): Promise<RestApiResponse<GetSummaryOfMarginAccountResponse>>;
        queryCrossIsolatedMarginCapitalFlow(
            requestParameters?: QueryCrossIsolatedMarginCapitalFlowRequest,
        ): Promise<RestApiResponse<QueryCrossIsolatedMarginCapitalFlowResponse>>;
        queryCrossMarginAccountDetails(
            requestParameters?: QueryCrossMarginAccountDetailsRequest,
        ): Promise<RestApiResponse<QueryCrossMarginAccountDetailsResponse>>;
        queryCrossMarginFeeData(
            requestParameters?: QueryCrossMarginFeeDataRequest,
        ): Promise<RestApiResponse<QueryCrossMarginFeeDataResponse>>;
        queryEnabledIsolatedMarginAccountLimit(
            requestParameters?: QueryEnabledIsolatedMarginAccountLimitRequest,
        ): Promise<RestApiResponse<QueryEnabledIsolatedMarginAccountLimitResponse>>;
        queryIsolatedMarginAccountInfo(
            requestParameters?: QueryIsolatedMarginAccountInfoRequest,
        ): Promise<RestApiResponse<QueryIsolatedMarginAccountInfoResponse>>;
        queryIsolatedMarginFeeData(
            requestParameters?: QueryIsolatedMarginFeeDataRequest,
        ): Promise<RestApiResponse<QueryIsolatedMarginFeeDataResponse>>;
    }

    Implemented by

    Index

    Methods

    • Query Cross Isolated Margin Capital Flow

      Weight(IP): 100

      Security Type: USER_DATA

      Notes:

      • Only supports querying the data of the last 90 days

      • The time between startTime and endTime cannot be longer than 7 days.

      • If both startTime and endTime are omitted, the most recent 7 days are queried (endTime defaults to the current time, and startTime to the current time minus 7 days).

      • If startTime is provided without endTime, endTime defaults to startTime plus 7 days.

      • If endTime is provided without startTime, startTime defaults to endTime minus 7 days.

      • If fromId is set, the data with id > fromId within the queried time range will be returned. Otherwise the latest data within that range will be returned. fromId does not extend the time range; to retrieve older records, move startTime and endTime backwards in windows of up to 7 days.

      • To query isolated data, Symbol needs to be entered.

      Parameters

      Returns Promise<RestApiResponse<QueryCrossIsolatedMarginCapitalFlowResponse>>

      AccountApiInterface