# Create

Create a file/folder for the application.

# HTTP Request:

PATCH https://api.serveravatar.com/organizations/{organization}/servers/{server}/applications/{application}/file-managers/file/create

# Parameter:

Parameters Required Type Description
type Yes String file, or folder
name Yes String Name of file or folder.
path No String A path where you want to create a file or folder.

# Curl Request example:

curl --request PATCH \
  --url "https://api.serveravatar.com/organizations/5/servers/15/applications/92/file-managers/file/create" \
  --header 'content-type: application/json' \
  --header 'accept: application/json' \
  --header 'Authorization: <YOUR API TOKEN>' \
  --data '{
      "name": "api.php",
      "path": "/public_html",
      "type": "file"
    }'

# Response:

# File Create:

  • 200 (Ok)
{
	"message":"Successfully file created."
}

# Already Exists

  • 500 (Internal Server Error)
{
    "message": "File or Folder name already exists!"
}

# Organization Not Found

  • 404 (Not Found)
{
    "message": "Organization not found!"
}

# Server Not Found

  • 404 (Not Found)
{
    "message": "Server not found!"
}

# Application Not Found

  • 404 (Not Found)
{
    "message": "Application not found!"
}

# Server Error

  • 500 (Internal Server Error)
{
    "message": "Something went really wrong!"
}
Last Updated: 5/2/2023, 12:48:26 PM