@dvelop-sdk
    Preparing search index...

    Interface OutgoingHttpRequest

    Information about outgoing http requests

    interface OutgoingHttpRequest {
        headers?: { [key: string]: string };
        method: string;
        url: string;
    }
    Index

    Properties

    Properties

    headers?: { [key: string]: string }

    Values of some http headers.

    method: string

    HTTP request method in upper case. For example GET, POST, DELETE

    url: string

    Full HTTP request URL in the form scheme://host[:port]/path?query[#fragment]. Usually the fragment is not transmitted over HTTP, but if it is known, it should be included nevertheless.

    MUST NOT contain credentials passed via URL in form of https://username:password@www.example.com/. In such case the attribute's value should be https://www.example.com/.