- 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
- Manage
- Health & Monitoring
- Databases
- Database Users
- System Users
- Deployment Keys
- Services
- Cron Job
- Supervisor
- SSH Keys
- SSH Session
- SSH Config
- Activity Logs
- Security - Firewall
- Security - Fail2Ban
- Settings - PHP
- Settings - Auto Security Update
- Settings - Change IP Address
- Web Applications
- Manage
- 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
- Atomic Projects
- Deployments
- Web Applications
- Symlinks
- Deployment Scripts
- Activity Logs
- Static Data
Update atomic project
PATCH
/atomic/{{atomicProjectId}}
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
optional
composerInstall
boolean
optional
composerInstallDev
boolean
optional
completedNotification
boolean
optional
failedNotification
boolean
optional
autoDeploy
boolean
optional
Example
{
"name": "first atomic",
"composerInstall": true,
"composerInstallDev": true,
"completedNotification": true,
"failedNotification": true,
"autoDeploy": false
}
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 PATCH 'https://manage.runcloud.io/api/v3/atomic/{{atomicProjectId}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "first atomic",
"composerInstall": true,
"composerInstallDev": true,
"completedNotification": true,
"failedNotification": true,
"autoDeploy": false
}'
Responses
🟢200Success
application/json
Body
id
integer
required
name
string
required
active
boolean
required
provider
string
required
repository
string
required
branch
string
required
autoDeploy
boolean
required
composerInstall
boolean
required
composerInstallDev
boolean
required
totalCompleted
integer
required
totalFailed
integer
required
completedNotification
boolean
required
failedNotification
boolean
required
pullKey1
string
required
pullKey2
string
required
repositoryData
object
required
url
string
required
repo
string
required
latestDeployment
null
required
Example
{
"id": 24,
"name": "ali api atomic",
"active": true,
"provider": "github",
"repository": "alirhmn/laravel-woi",
"branch": "master",
"autoDeploy": true,
"composerInstall": true,
"composerInstallDev": false,
"totalCompleted": 0,
"totalFailed": 0,
"completedNotification": false,
"failedNotification": false,
"pullKey1": "QbQMkGwgeEta3D6x94pWcrN41721373808",
"pullKey2": "beidhu1ZmTTp9stvY43ayZ9K2LvytsvF",
"repositoryData": {
"url": "https://github.com/alirhmn/laravel-woi",
"repo": "[email protected]:alirhmn/laravel-woi.git"
},
"latestDeployment": null
}
Modified at 2024-10-16 09:03:50