DELETE
/
v2
/
workspaces
/
applications
Remove Application
curl --request DELETE \
  --url https://api.squarecloud.app/v2/workspaces/applications \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "workspaceId": "<string>",
  "appId": "<string>"
}'
{
  "status": "success"
}
Authorization
string
required
The API key for your account. You can find this in your account settings.
workspaceId
string
The ID of the workspace.
appId
string
The ID of the application. You can find this in the URL of your application’s dashboard.

Response

status
string
Indicates whether the call was successful.. success if successful, error if not.
{
  "status": "success"
}