SAP Cloud SDK for JavaScript - v4.5.1
    Preparing search index...

    Interface OpenApiRequestParameters

    Type of the request parameters to be passed to OpenApiRequestBuilder.

    interface OpenApiRequestParameters {
        _encoding?: Record<
            string,
            {
                contentType: string;
                isImplicit: boolean;
                parsedContentTypes: {
                    parameters: { [key: string]: string };
                    type: string;
                }[];
            },
        >;
        body?: any;
        headerParameters?: Record<string, any>;
        pathParameters?: Record<string, any>;
        queryParameters?: Record<string, any>;
    }
    Index

    Properties

    _encoding?: Record<
        string,
        {
            contentType: string;
            isImplicit: boolean;
            parsedContentTypes: {
                parameters: { [key: string]: string };
                type: string;
            }[];
        },
    >

    Encoding metadata for multipart/form-data properties.

    body?: any

    Request body typically used with "create" and "update" operations (POST, PUT, PATCH).

    headerParameters?: Record<string, any>

    Collection of header parameters.

    pathParameters?: Record<string, any>

    Collection of path parameters.

    queryParameters?: Record<string, any>

    Collection of query parameters.

    Copyright Ⓒ 2026 SAP SE or an SAP affiliate company. All rights reserved.