@tikoci/centrs
    Preparing search index...

    Interface ProtocolExecuteRequest

    A structured CLI-shaped command for the execute seam. WP-1c owns canonicalization and validation; this is the minimal typed shape the transports run. Supply command for structured path-POST / native talk, or script for the /rest/execute script fallback.

    interface ProtocolExecuteRequest {
        attributes?: Record<string, string>;
        command: string;
        path: string;
        queries?: readonly string[];
        script?: string;
    }
    Index

    Properties

    attributes?: Record<string, string>

    name=value attributes for the command.

    command: string

    Verb appended to the path, e.g. add, set, remove, print.

    path: string

    Slash-prefixed RouterOS path the command targets, e.g. /ip/address.

    queries?: readonly string[]

    ?query words (already including the leading ?), native-api only.

    script?: string

    Raw CLI line for the /rest/execute script fallback.