1. Deployments
ROCKITPLAY API
  • ROCKIT Edge - Admin API
    • Installation / Upgrade
      • ping
      • get versions
      • submit test task
    • Admin Edge Organizations
      • Create Organization
      • Commit Export
      • Delete Organization
  • ROCKIT Edge - Backend API
    • Backend Edge Organizations
      • Create Organization
      • Delete Organization
    • Authentication
      • user login (org)
      • user login (user+pw)
      • Refresh
      • User logout
    • Account Management
      • get user details
      • list users
      • Modify user
      • delete users
      • Create User / Create Machine User
    • Deployments
      • Creating Deployments
        POST
      • Get Deployments
        GET
      • Get Deployment Details
        GET
      • Modify Deployment
        PATCH
      • Deleting Deployments
        DELETE
    • Apps
      • Creating Apps
      • Import native builds
      • App Details
      • List Apps
      • Patch App
      • Delete Apps
    • Triggers
      • Process Traces
      • Retry Task
    • Tasks
      • Listing Tasks
      • Task Details
      • Acknowledge Warning / Expire Task
    • Subscriptions
      • Subscribe
      • List Subscriptions
      • Unsubscribe
    • Roles
      • List Roles
      • Create Role
      • Patch Role
      • Role Details
      • Delete Roles
    • API Keys
      • Delete API Key
    • Commit
  • Changelog
    • Changelog
  • Schemas
    • Webhook Request Body
    • Import UrlSchema
  1. Deployments

Deleting Deployments

DELETE
https://Example-Server.com/be/v1/deployments/{DEPLOYMENT_NAME}
Last modified:2026-04-22 15:09:02
This endpoint deletes a deployment from the ROCKIT Edge. Deletion is only possible, if the deployment is not registered to any app.
Note, that endpoint will remove all published files from the origin storage of the specified deployment.

Required Permissions#

deployments.delete
See Roles for more details.

Request

Path Params

Header Params

Request Code 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 --request DELETE 'https://Example-Server.com/be/v1/deployments/gcore' \
--header 'Authorization: Bearer {{_edge_org_admin_access_token}}' \
--header 'x-rockit-orgname: ExampleOrg' \
--header 'x-rockit-username: adminPrincipal' \
--header 'x-rockit-api-key: {{_adminPrincipal_apiKey}}'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "status": "success",
    "message": "deployment deleted"
}
🟠400Missing-Param
🟠409Item Protected
🟠401Unauthorized
Modified at 2026-04-22 15:09:02
Previous
Modify Deployment
Next
Apps
Built with