XPipe LogoXPipe Documentation

Store a raw blob to be used later

Stores arbitrary binary data in a blob such that it can be used later on to for example write to a remote file. This will return a uuid which can be used as a reference to the blob. You can also store normal text data in blobs if you intend to create text or shell script files with it.

POST
/fs/blob

Authorization

AuthorizationRequiredBearer <token>

The bearer token used is the session token that you receive from the handshake exchange.

In: header

Request Body

application/octet-streamRequired
bodyRequiredstring
Format: "binary"
curl -X POST "http://localhost:21721/fs/blob" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/octet-stream" \
  -d 'string'

The operation was successful. The data was stored.

{
  "summary": "Success",
  "value": {
    "blob": "854afc45-eadc-49a0-a45d-9fb76a484304"
  }
}