Interface representing the execution parameters for an external API call.

interface Execution {
    action: string;
    body: {};
    header: {};
    parameter: {};
    query: {};
    raw: string;
    sendAsForm?: boolean;
    source: string;
}

Properties

action: string

The action or endpoint to be called.

body: {}

The body of the API request, which can vary based on the request method.

header: {}

Headers to be included in the API request.

parameter: {}

Additional parameters for the API request.

query: {}

Query parameters to be included in the API request.

raw: string

Raw data to be sent in the API request.

sendAsForm?: boolean

Indicates whether the body should be sent as form data. Optional.

source: string

The source URL for the API call.