ROCKITPLAY API
  1. Backend Edge Organizations
ROCKITPLAY API
  • ROCKIT Edge - Admin API
    • Minimal Tests
      • ping
      • submit test task
    • Admin Edge Organizations
      • Create Organization
      • Delete Organization
  • ROCKIT Edge - Backend API
    • Backend Edge Organizations
      • Create Organization
        POST
      • Delete Organization
        DELETE
    • Authentication
      • user login
      • authentication
    • Account Management
      • get user details
      • list users
      • Modify user
      • delete users
      • Create User / Create Machine User
    • Deployments
      • Creating Deployments
      • Get Deployments
      • Get Deployment Details
      • Modify Deployment
      • Deleting Deployments
    • 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
  • Changelog
    • Changelog
  1. Backend Edge Organizations

Delete Organization

DELETE
https://Example-Server.com/be/v1/orgs/{ORG_NAME}
Last modified:2025-03-31 07:46:34
This function deletes all data of an ROCKIT Edge organization.
Note, this operation cannot be undone.

Request

Path Params
ORG_NAME
string 
required
Example:
{{EDGE_ORG_NAME}}
Match pattern:
/^[A-Za-z0-9_]{2,50}$/
Query Params
prune
boolean 
optional
Example:
true
Header Params
x-rockit-beauth-token
string 
required
ROCKIT Edge backend auth token generated by POST auth.
Example:
{{_edge_org_admin_beauth_token}}

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 DELETE 'https://Example-Server.com/be/v1/orgs/ExampleOrg?prune=true' \
--header 'x-rockit-beauth-token: eyjhvcIhvds;huVODV...'

Responses

🟢200200: success
application/json
Body
status
string 
required
A string confirming that the organization was deleted successfully.
message
string 
required
Provides a confirmation message such as "organization deleted" to indicate the deletion was completed.
Example
{
  "status": "success",
  "message": "organization deleted"
}
🟠400Invalid Param
🟠401Unauthorized
Previous
Create Organization
Next
Authentication
Built with