- API v3 Introduction
- 3rd Party API Integrations
- DNS Integrations
- Server Integrations
- External Backup Storages
- List 3rd Party API IntegrationsGET
- 3rd Party API Integration ObjectGET
- Delete 3rd Party API IntegrationDELETE
- Servers
- Web Applications
- Manage
- Custom WebApp
- One Click Installer
- Git Deployment
- PHP Script Installer
- WebApp Alias
- List Web ApplicationsGET
- Web Application ObjectGET
- Set as Default Web Application In The ServerPOST
- Delete Web ApplicationDELETE
- Domain Name
- SSL/TLS
- SSL Basic (WebApp SSL)
- SSL Advanced (Domain SSL) For Business/Enterprise
- Check SSL Method (Basic/Advanced) & AutoSSL Status
- Update/Change SSL Method (Basic/Advanced) & AutoSSL Status
- SSL Advanced – Install/Deploy Domain SSL
- SSL Advanced – Domain SSL Object
- SSL Advanced – Update Domain SSL Config
- SSL Advanced – Redeploy Domain SSL (Let’s Encrypt only)
- SSL Advanced – Delete Domain SSL
- Cloning
- Tools
- WordPress - RunCloud Hub
- WordPress - Staging
- WordPress - General Settings
- Activity Logs
- Settings
- Backup
- Atomic Deployment
- Static Data
Create PHPMyAdmin Web Application
POST
/servers/{{serverId}}/webapps/phpmyadmin
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
name
string
required
domainName
string
required
user
integer
optional
publicPath
string | null
optional
phpVersion
string
optional
stack
string
optional
stackMode
string
optional
clickjackingProtection
boolean
optional
xssProtection
boolean
optional
mimeSniffingProtection
boolean
optional
processManager
string
optional
processManagerMaxChildren
integer
optional
processManagerMaxRequests
integer
optional
openBasedir
string
optional
timezone
string
optional
disableFunctions
string
optional
maxExecutionTime
integer
optional
maxInputTime
integer
optional
maxInputVars
integer
optional
memoryLimit
integer
optional
postMaxSize
integer
optional
uploadMaxFilesize
integer
optional
sessionGcMaxlifetime
integer
optional
allowUrlFopen
boolean
optional
Example
{
"name": "wp-via-api5",
"domainName": "wp-via-api5.site",
"user": 1539,
"publicPath": null,
"phpVersion": "php80rc",
"stack": "hybrid",
"stackMode": "production",
"clickjackingProtection": true,
"xssProtection": true,
"mimeSniffingProtection": true,
"processManager": "ondemand",
"processManagerMaxChildren": 50,
"processManagerMaxRequests": 500,
"openBasedir": "/home/myuser/webapps/testing:/var/lib/php/session:/tmp",
"timezone": "UTC",
"disableFunctions": "getmyuid,passthru,leak,listen,diskfreespace,tmpfile,link,ignore_user_abort,shell_exec,dl,set_time_limit,exec,system,highlight_file,source,show_source,fpassthru,virtual,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,proc_open,proc_close,proc_nice,proc_terminate,escapeshellcmd,ini_alter,popen,pcntl_exec,socket_accept,socket_bind,socket_clear_error,socket_close,socket_connect,symlink,posix_geteuid,ini_alter,socket_listen,socket_create_listen,socket_read,socket_create_pair,stream_socket_server",
"maxExecutionTime": 30,
"maxInputTime": 60,
"maxInputVars": 1000,
"memoryLimit": 256,
"postMaxSize": 256,
"uploadMaxFilesize": 256,
"sessionGcMaxlifetime": 1440,
"allowUrlFopen": true
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://manage.runcloud.io/api/v3/servers/{{serverId}}/webapps/phpmyadmin' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "wp-via-api5",
"domainName": "wp-via-api5.site",
"user": 1539,
"publicPath": null,
"phpVersion": "php80rc",
"stack": "hybrid",
"stackMode": "production",
"clickjackingProtection": true,
"xssProtection": true,
"mimeSniffingProtection": true,
"processManager": "ondemand",
"processManagerMaxChildren": 50,
"processManagerMaxRequests": 500,
"openBasedir": "/home/myuser/webapps/testing:/var/lib/php/session:/tmp",
"timezone": "UTC",
"disableFunctions": "getmyuid,passthru,leak,listen,diskfreespace,tmpfile,link,ignore_user_abort,shell_exec,dl,set_time_limit,exec,system,highlight_file,source,show_source,fpassthru,virtual,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,proc_open,proc_close,proc_nice,proc_terminate,escapeshellcmd,ini_alter,popen,pcntl_exec,socket_accept,socket_bind,socket_clear_error,socket_close,socket_connect,symlink,posix_geteuid,ini_alter,socket_listen,socket_create_listen,socket_read,socket_create_pair,stream_socket_server",
"maxExecutionTime": 30,
"maxInputTime": 60,
"maxInputVars": 1000,
"memoryLimit": 256,
"postMaxSize": 256,
"uploadMaxFilesize": 256,
"sessionGcMaxlifetime": 1440,
"allowUrlFopen": true
}'
Responses
🟢200Success
application/json
Body
id
integer
required
server_user_id
integer
required
name
string
required
rootPath
string
required
publicPath
string
required
phpVersion
string
required
stack
string
required
stackMode
string
required
type
string
required
defaultApp
null
required
alias
null
required
pullKey1
string
required
pullKey2
string
required
created_at
string
required
Example
{
"id": 660,
"server_user_id": 1668,
"name": "wp-api",
"rootPath": "/home/syahslam/webapps/wp-api",
"publicPath": "/home/syahslam/webapps/wp-api",
"phpVersion": "php80rc",
"stack": "hybrid",
"stackMode": "production",
"type": "wordpress",
"defaultApp": null,
"alias": null,
"pullKey1": "TsMTuEyGlA0WEqjEPVzJXWpv1721205430",
"pullKey2": "ZqZaO9dDD4hf5iZBOFkHkOoB4cDnK3Ix",
"created_at": "2024-07-17 08:37:10"
}
Modified at 2024-10-16 08:55:29