Nushell
Get Nu!
Getting Started
  • The Nushell Book
  • Command Reference
  • Cookbook
  • Language Reference Guide
  • Contributing Guide
Blog
  • English
  • 中文
  • Deutsch
  • Français
  • Español
  • 日本語
  • Português do Brasil
  • Русский язык
  • 한국어
GitHub
Get Nu!
Getting Started
  • The Nushell Book
  • Command Reference
  • Cookbook
  • Language Reference Guide
  • Contributing Guide
Blog
  • English
  • 中文
  • Deutsch
  • Français
  • Español
  • 日本語
  • Português do Brasil
  • Русский язык
  • 한국어
GitHub
  • Categories

    • Bits
    • Bytes
    • Chart
    • Conversions
    • Core
    • Database
    • Dataframe
    • Dataframe Or Lazyframe
    • Date
    • Debug
    • Default
    • Env
    • Experimental
    • Expression
    • Filesystem
    • Filters
    • Formats
    • Generators
    • Hash
    • History
    • Lazyframe
    • Math
    • Misc
    • Network
    • Path
    • Platform
    • Plugin
    • Prompt
    • Random
    • Removed
    • Shells
    • Strings
    • System
    • Viewers

http delete for network

Delete the specified resource.

Signature

> http delete {flags} (URL)

Flags

  • --user, -u {any}: The username when authenticating.
  • --password, -p {any}: The password when authenticating.
  • --data, -d {any}: The content to post.
  • --content-type, -t {any}: The MIME type of content to post.
  • --max-time, -m {duration}: Max duration before timeout occurs.
  • --headers, -H {any}: Custom headers you want to add.
  • --raw, -r: Fetch contents as text rather than a table.
  • --insecure, -k: Allow insecure server connections when using SSL.
  • --full, -f: Returns the full response instead of only the body.
  • --allow-errors, -e: Do not fail if the server returns an error code.
  • --pool: Using a global pool as a client.
  • --redirect-mode, -R {string}: What to do when encountering redirects. Default: 'follow'. Valid options: 'follow' ('f'), 'manual' ('m'), 'error' ('e').
  • --unix-socket, -U {path}: Connect to the specified Unix socket instead of using TCP.

Parameters

  • URL: The URL to fetch the contents from.

Input/output types:

inputoutput
anyany

Examples

HTTP delete from example.com.

> http delete https://www.example.com

HTTP delete from example.com, with username and password.

> http delete --user myuser --password mypass https://www.example.com

HTTP delete from example.com, with custom header using a record.

> http delete --headers {my-header-key: my-header-value} https://www.example.com

HTTP delete from example.com, with custom header using a list.

> http delete --headers [my-header-key-A my-header-value-A my-header-key-B my-header-value-B] https://www.example.com

HTTP delete from example.com, with body.

> http delete --data 'body' https://www.example.com

HTTP delete from example.com, with JSON body.

> http delete --content-type application/json --data { field: value } https://www.example.com

Perform an HTTP delete with JSON content from a pipeline to example.com.

> open foo.json | http delete https://www.example.com

Notes

Performs HTTP DELETE operation.