XPipe LogoXPipe Documentation

Store raw file blob

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

bearerAuth
AuthorizationBearer <token>

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

In: header

Request Body

application/octet-stream

body*unknown

Response Body

application/json

application/json

application/json

curl -X POST "http://localhost:21721/fs/blob"
{
  "blob": "854afc45-eadc-49a0-a45d-9fb76a484304"
}
{
  "message": "string"
}
Empty
Empty
{
  "error": {
    "cause": {},
    "stackTrace": [],
    "suppressed": [],
    "localizedMessage": "string",
    "message": "string"
  }
}