ClickHelp User Manual
[API] Create File or Folder
Creates a file in the Storage.
POST storage/{file-path}?format={file-encode-format}&isOverwrite={is-overwrite}
Authentication
This request requires basic authentication.
Request Parameters
Path params
file-path | string |
File or folder path relative to the root, i.e., everything after ...resources/Storage/. |
---|
Query params
format | string |
File encoding. Currently, only base64 is supported. |
---|---|---|
isOverwrite | bool |
[optional] Whether to overwrite an existing file. false by default. |
Body params
content | string |
[optional] Base64-encoded file content. If not specified, creates an empty file. |
---|---|---|
isFolder | bool |
[optional] Whether to create a folder or file. If true, content is ignored. false by default. |
Samples
Request sample
Bash (Unix Shell) |
curl --location -g --request POST 'https://{portal-url}/api/v1/storage/project-deep-space-exploration/info.png?format=base64&isOverwrite=true' ^ |