Insomnia-Script-SDK-Docs
    Preparing search index...

    Interface RequestBodyOptions

    interface RequestBodyOptions {
        file?: string;
        formdata?: {
            disabled?: boolean;
            key: string;
            type?: string;
            value: string;
        }[];
        graphql?: {
            disabled?: boolean;
            operationName: string;
            query: string;
            variables: object;
        };
        mode: RequestBodyMode;
        options?: object;
        raw?: string;
        urlencoded?: {
            disabled?: boolean;
            fileName?: string;
            key: string;
            multiline?: string
            | boolean;
            type?: string;
            value: string;
        }[];
    }
    Index

    Properties

    file?: string
    formdata?: { disabled?: boolean; key: string; type?: string; value: string }[]
    graphql?: {
        disabled?: boolean;
        operationName: string;
        query: string;
        variables: object;
    }
    options?: object
    raw?: string
    urlencoded?: {
        disabled?: boolean;
        fileName?: string;
        key: string;
        multiline?: string | boolean;
        type?: string;
        value: string;
    }[]