DominoRequestOptions: {
    body?: any;
    dataSource?: string;
    mode?: "same-origin" | "no-cors" | "cors" | "navigate";
    Origin?: string;
    params: Map<string, string>;
}

All data that needs to be provided to the Domino Rest connector

Type declaration

  • Optionalbody?: any

    for POST, PUT, PATCH: the request body

  • OptionaldataSource?: string

    The scope name.

  • Optionalmode?: "same-origin" | "no-cors" | "cors" | "navigate"

    Used for fetch's Request.mode property.

  • OptionalOrigin?: string

    The origin of the request. Used for CORS mode.

  • params: Map<string, string>

    Additional URL parameters if required.