Main object for structuring a request.

Hierarchy

  • HttpRequest

Constructors

Properties

body: string

Remarks

Content of the body of the HTTP request.

This property can't be edited in read-only mode.

headers: HttpHeader[]

Remarks

A collection of HTTP headers to add to the outbound request.

This property can't be edited in read-only mode.

Remarks

HTTP method (e.g., GET or PUT or PATCH) to use for making the request.

This property can't be edited in read-only mode.

timeout: number

Remarks

Amount of time, in seconds, before the request times out and is abandoned.

This property can't be edited in read-only mode.

uri: string

Remarks

The HTTP resource to access.

This property can't be edited in read-only mode.

Methods

  • Parameters

    • key: string
    • value: string | SecretString

    Returns HttpRequest

    Remarks

    Adds an additional header to the overall list of headers used in the corresponding HTTP request.

    This function can't be called in read-only mode.

  • Parameters

    • body: string

    Returns HttpRequest

    Remarks

    Updates the content of the body of the HTTP request.

    This function can't be called in read-only mode.

  • Parameters

    Returns HttpRequest

    Remarks

    Replaces and applies a set of HTTP Headers for the request.

    This function can't be called in read-only mode.

  • Parameters

    Returns HttpRequest

    Remarks

    Sets the desired HTTP method (e.g., GET or PUT or PATCH) to use for making the request.

    This function can't be called in read-only mode.

  • Parameters

    • timeout: number

    Returns HttpRequest

    Remarks

    This function can't be called in read-only mode.