Body-less request builder

[io/http/utils/Body-less request builder]


Builds a HTTP request that has no body. Usually used for building GET requests, though not exclusively.


Keywords: bodyless, bodiless, get, request

Input ports

  • method: ("GET" or "POST" or "PUT" or "PATCH" or "DELETE")

  • URL: string

  • headers: {string: string}

Output ports

  • request:

    {
      "method": ("GET" or "POST" or "PUT" or "PATCH" or "DELETE"),
      "url": string,
      "headers": {string: string}
    }

Last updated