ストレージ

List all storages

GET//localhost:9090/api/storage
Response

OK

Body
clientConfigall of

ClientConfig is the HTTP configuration for the storage, if applicable.

configall of

Config is a map of key-value pairs that can be used to store RClone options.

createdAtstring
idinteger
namestring
pathstring

Path is the path to the storage root.

preparationsAsOutputarray of model.Preparation (object)
preparationsAsSourcearray of model.Preparation (object)

Associations

typestring
updatedAtstring
Request
const response = await fetch('//localhost:9090/api/storage', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "clientConfig": {
      "caCert": [
        "text"
      ],
      "clientCert": "text",
      "clientKey": "text",
      "disableHttp2": false,
      "disableHttpKeepAlives": false,
      "insecureSkipVerify": false,
      "noGzip": false,
      "retryBackoffExponential": 0,
      "skipInaccessibleFile": false,
      "useServerModTime": false,
      "userAgent": "text"
    },
    "config": {},
    "createdAt": "text",
    "name": "text",
    "path": "text",
    "preparationsAsOutput": [
      {
        "createdAt": "text",
        "deleteAfterExport": false,
        "name": "text",
        "noDag": false,
        "noInline": false,
        "outputStorages": [],
        "sourceStorages": [],
        "updatedAt": "text"
      }
    ],
    "preparationsAsSource": [
      {
        "createdAt": "text",
        "deleteAfterExport": false,
        "name": "text",
        "noDag": false,
        "noInline": false,
        "outputStorages": [],
        "sourceStorages": [],
        "updatedAt": "text"
      }
    ],
    "type": "text",
    "updatedAt": "text"
  }
]

Create Acd storage

POST//localhost:9090/api/storage/acd
Body

Request body

clientConfigall of

config for underlying HTTP client

configall of

config for the storage

namestring

Name of the storage, must be unique

Example: "my-storage"
pathstring

Path of the storage

Response

OK

Body
clientConfigall of

ClientConfig is the HTTP configuration for the storage, if applicable.

configall of

Config is a map of key-value pairs that can be used to store RClone options.

createdAtstring
idinteger
namestring
pathstring

Path is the path to the storage root.

preparationsAsOutputarray of model.Preparation (object)
preparationsAsSourcearray of model.Preparation (object)

Associations

typestring
updatedAtstring
Request
const response = await fetch('//localhost:9090/api/storage/acd', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "clientConfig": {
    "caCert": [
      "text"
    ],
    "clientCert": "text",
    "clientKey": "text",
    "disableHttp2": false,
    "disableHttpKeepAlives": false,
    "insecureSkipVerify": false,
    "noGzip": false,
    "retryBackoffExponential": 0,
    "skipInaccessibleFile": false,
    "useServerModTime": false,
    "userAgent": "text"
  },
  "config": {},
  "createdAt": "text",
  "name": "text",
  "path": "text",
  "preparationsAsOutput": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "preparationsAsSource": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "type": "text",
  "updatedAt": "text"
}

Create Azureblob storage

POST//localhost:9090/api/storage/azureblob
Body

Request body

clientConfigall of

config for underlying HTTP client

configall of

config for the storage

namestring

Name of the storage, must be unique

Example: "my-storage"
pathstring

Path of the storage

Response

OK

Body
clientConfigall of

ClientConfig is the HTTP configuration for the storage, if applicable.

configall of

Config is a map of key-value pairs that can be used to store RClone options.

createdAtstring
idinteger
namestring
pathstring

Path is the path to the storage root.

preparationsAsOutputarray of model.Preparation (object)
preparationsAsSourcearray of model.Preparation (object)

Associations

typestring
updatedAtstring
Request
const response = await fetch('//localhost:9090/api/storage/azureblob', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "clientConfig": {
    "caCert": [
      "text"
    ],
    "clientCert": "text",
    "clientKey": "text",
    "disableHttp2": false,
    "disableHttpKeepAlives": false,
    "insecureSkipVerify": false,
    "noGzip": false,
    "retryBackoffExponential": 0,
    "skipInaccessibleFile": false,
    "useServerModTime": false,
    "userAgent": "text"
  },
  "config": {},
  "createdAt": "text",
  "name": "text",
  "path": "text",
  "preparationsAsOutput": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "preparationsAsSource": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "type": "text",
  "updatedAt": "text"
}

Create B2 storage

POST//localhost:9090/api/storage/b2
Body

Request body

clientConfigall of

config for underlying HTTP client

configall of

config for the storage

namestring

Name of the storage, must be unique

Example: "my-storage"
pathstring

Path of the storage

Response

OK

Body
clientConfigall of

ClientConfig is the HTTP configuration for the storage, if applicable.

configall of

Config is a map of key-value pairs that can be used to store RClone options.

createdAtstring
idinteger
namestring
pathstring

Path is the path to the storage root.

preparationsAsOutputarray of model.Preparation (object)
preparationsAsSourcearray of model.Preparation (object)

Associations

typestring
updatedAtstring
Request
const response = await fetch('//localhost:9090/api/storage/b2', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "clientConfig": {
    "caCert": [
      "text"
    ],
    "clientCert": "text",
    "clientKey": "text",
    "disableHttp2": false,
    "disableHttpKeepAlives": false,
    "insecureSkipVerify": false,
    "noGzip": false,
    "retryBackoffExponential": 0,
    "skipInaccessibleFile": false,
    "useServerModTime": false,
    "userAgent": "text"
  },
  "config": {},
  "createdAt": "text",
  "name": "text",
  "path": "text",
  "preparationsAsOutput": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "preparationsAsSource": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "type": "text",
  "updatedAt": "text"
}

Create Box storage

POST//localhost:9090/api/storage/box
Body

Request body

clientConfigall of

config for underlying HTTP client

configall of

config for the storage

namestring

Name of the storage, must be unique

Example: "my-storage"
pathstring

Path of the storage

Response

OK

Body
clientConfigall of

ClientConfig is the HTTP configuration for the storage, if applicable.

configall of

Config is a map of key-value pairs that can be used to store RClone options.

createdAtstring
idinteger
namestring
pathstring

Path is the path to the storage root.

preparationsAsOutputarray of model.Preparation (object)
preparationsAsSourcearray of model.Preparation (object)

Associations

typestring
updatedAtstring
Request
const response = await fetch('//localhost:9090/api/storage/box', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "clientConfig": {
    "caCert": [
      "text"
    ],
    "clientCert": "text",
    "clientKey": "text",
    "disableHttp2": false,
    "disableHttpKeepAlives": false,
    "insecureSkipVerify": false,
    "noGzip": false,
    "retryBackoffExponential": 0,
    "skipInaccessibleFile": false,
    "useServerModTime": false,
    "userAgent": "text"
  },
  "config": {},
  "createdAt": "text",
  "name": "text",
  "path": "text",
  "preparationsAsOutput": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "preparationsAsSource": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "type": "text",
  "updatedAt": "text"
}

Create Drive storage

POST//localhost:9090/api/storage/drive
Body

Request body

clientConfigall of

config for underlying HTTP client

configall of

config for the storage

namestring

Name of the storage, must be unique

Example: "my-storage"
pathstring

Path of the storage

Response

OK

Body
clientConfigall of

ClientConfig is the HTTP configuration for the storage, if applicable.

configall of

Config is a map of key-value pairs that can be used to store RClone options.

createdAtstring
idinteger
namestring
pathstring

Path is the path to the storage root.

preparationsAsOutputarray of model.Preparation (object)
preparationsAsSourcearray of model.Preparation (object)

Associations

typestring
updatedAtstring
Request
const response = await fetch('//localhost:9090/api/storage/drive', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "clientConfig": {
    "caCert": [
      "text"
    ],
    "clientCert": "text",
    "clientKey": "text",
    "disableHttp2": false,
    "disableHttpKeepAlives": false,
    "insecureSkipVerify": false,
    "noGzip": false,
    "retryBackoffExponential": 0,
    "skipInaccessibleFile": false,
    "useServerModTime": false,
    "userAgent": "text"
  },
  "config": {},
  "createdAt": "text",
  "name": "text",
  "path": "text",
  "preparationsAsOutput": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "preparationsAsSource": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "type": "text",
  "updatedAt": "text"
}

Create Dropbox storage

POST//localhost:9090/api/storage/dropbox
Body

Request body

clientConfigall of

config for underlying HTTP client

configall of

config for the storage

namestring

Name of the storage, must be unique

Example: "my-storage"
pathstring

Path of the storage

Response

OK

Body
clientConfigall of

ClientConfig is the HTTP configuration for the storage, if applicable.

configall of

Config is a map of key-value pairs that can be used to store RClone options.

createdAtstring
idinteger
namestring
pathstring

Path is the path to the storage root.

preparationsAsOutputarray of model.Preparation (object)
preparationsAsSourcearray of model.Preparation (object)

Associations

typestring
updatedAtstring
Request
const response = await fetch('//localhost:9090/api/storage/dropbox', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "clientConfig": {
    "caCert": [
      "text"
    ],
    "clientCert": "text",
    "clientKey": "text",
    "disableHttp2": false,
    "disableHttpKeepAlives": false,
    "insecureSkipVerify": false,
    "noGzip": false,
    "retryBackoffExponential": 0,
    "skipInaccessibleFile": false,
    "useServerModTime": false,
    "userAgent": "text"
  },
  "config": {},
  "createdAt": "text",
  "name": "text",
  "path": "text",
  "preparationsAsOutput": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "preparationsAsSource": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "type": "text",
  "updatedAt": "text"
}

Create Fichier storage

POST//localhost:9090/api/storage/fichier
Body

Request body

clientConfigall of

config for underlying HTTP client

configall of

config for the storage

namestring

Name of the storage, must be unique

Example: "my-storage"
pathstring

Path of the storage

Response

OK

Body
clientConfigall of

ClientConfig is the HTTP configuration for the storage, if applicable.

configall of

Config is a map of key-value pairs that can be used to store RClone options.

createdAtstring
idinteger
namestring
pathstring

Path is the path to the storage root.

preparationsAsOutputarray of model.Preparation (object)
preparationsAsSourcearray of model.Preparation (object)

Associations

typestring
updatedAtstring
Request
const response = await fetch('//localhost:9090/api/storage/fichier', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "clientConfig": {
    "caCert": [
      "text"
    ],
    "clientCert": "text",
    "clientKey": "text",
    "disableHttp2": false,
    "disableHttpKeepAlives": false,
    "insecureSkipVerify": false,
    "noGzip": false,
    "retryBackoffExponential": 0,
    "skipInaccessibleFile": false,
    "useServerModTime": false,
    "userAgent": "text"
  },
  "config": {},
  "createdAt": "text",
  "name": "text",
  "path": "text",
  "preparationsAsOutput": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "preparationsAsSource": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "type": "text",
  "updatedAt": "text"
}

Create Filefabric storage

POST//localhost:9090/api/storage/filefabric
Body

Request body

clientConfigall of

config for underlying HTTP client

configall of

config for the storage

namestring

Name of the storage, must be unique

Example: "my-storage"
pathstring

Path of the storage

Response

OK

Body
clientConfigall of

ClientConfig is the HTTP configuration for the storage, if applicable.

configall of

Config is a map of key-value pairs that can be used to store RClone options.

createdAtstring
idinteger
namestring
pathstring

Path is the path to the storage root.

preparationsAsOutputarray of model.Preparation (object)
preparationsAsSourcearray of model.Preparation (object)

Associations

typestring
updatedAtstring
Request
const response = await fetch('//localhost:9090/api/storage/filefabric', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "clientConfig": {
    "caCert": [
      "text"
    ],
    "clientCert": "text",
    "clientKey": "text",
    "disableHttp2": false,
    "disableHttpKeepAlives": false,
    "insecureSkipVerify": false,
    "noGzip": false,
    "retryBackoffExponential": 0,
    "skipInaccessibleFile": false,
    "useServerModTime": false,
    "userAgent": "text"
  },
  "config": {},
  "createdAt": "text",
  "name": "text",
  "path": "text",
  "preparationsAsOutput": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "preparationsAsSource": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "type": "text",
  "updatedAt": "text"
}

Create Ftp storage

POST//localhost:9090/api/storage/ftp
Body

Request body

clientConfigall of

config for underlying HTTP client

configall of

config for the storage

namestring

Name of the storage, must be unique

Example: "my-storage"
pathstring

Path of the storage

Response

OK

Body
clientConfigall of

ClientConfig is the HTTP configuration for the storage, if applicable.

configall of

Config is a map of key-value pairs that can be used to store RClone options.

createdAtstring
idinteger
namestring
pathstring

Path is the path to the storage root.

preparationsAsOutputarray of model.Preparation (object)
preparationsAsSourcearray of model.Preparation (object)

Associations

typestring
updatedAtstring
Request
const response = await fetch('//localhost:9090/api/storage/ftp', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "clientConfig": {
    "caCert": [
      "text"
    ],
    "clientCert": "text",
    "clientKey": "text",
    "disableHttp2": false,
    "disableHttpKeepAlives": false,
    "insecureSkipVerify": false,
    "noGzip": false,
    "retryBackoffExponential": 0,
    "skipInaccessibleFile": false,
    "useServerModTime": false,
    "userAgent": "text"
  },
  "config": {},
  "createdAt": "text",
  "name": "text",
  "path": "text",
  "preparationsAsOutput": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "preparationsAsSource": [
    {
      "createdAt": "text",
      "deleteAfterExport": false,
      "name": "text",
      "noDag": false,
      "noInline": false,
      "outputStorages": [],
      "sourceStorages": [],
      "updatedAt": "text"
    }
  ],
  "type": "text",
  "updatedAt": "text"
}

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

.

Last updated