connectwise-rest
    Preparing search index...

    Type Alias RequestOptions

    type RequestOptions = {
        contentType?: ContentType;
        data?:
            | Record<string, unknown>
            | Record<string, unknown>[]
            | types.PatchOperation[]
            | FormData
            | Blob
            | ArrayBuffer
            | Uint8Array
            | null
            | string
            | number;
        method?: Methods;
        params?: Record<string, unknown>;
        path: string;
        responseType?: ResponseType;
    }
    Index

    Properties

    contentType?: ContentType

    Hint for the request body encoding; generator sets this for multipart endpoints.

    data?:
        | Record<string, unknown>
        | Record<string, unknown>[]
        | types.PatchOperation[]
        | FormData
        | Blob
        | ArrayBuffer
        | Uint8Array
        | null
        | string
        | number
    method?: Methods
    params?: Record<string, unknown>
    path: string
    responseType?: ResponseType

    Hint for how axios should decode the response; generator sets this for binary endpoints.