Storm docs logo
Search the docs.../
Explore Storm Products

Cluster Application Force Restart

Forces a cluster application to restart.

Request

PropertyValue
MethodPOST
URL/api/cluster/applications/{appId}/command
Content-Typeapplication/json
AuthenticationBearer Token
Request
Code iconbash
curl -X POST "{BASE_URL}/api/cluster/applications/{appId}/command" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"data":{"attributes":{"command":"forceRestart"}}}'

Path Parameters

ParameterTypeRequiredDescription
appIdstringYesApplication ID
Request With Parameters
Code iconbash
curl -X POST "{BASE_URL}/api/cluster/applications/{appId}/command" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json"

Request Body

ParameterTypeRequiredDescription
data.attributes.commandstringYesCommand to execute (always "forceRestart")
Request Body
Code iconjson
{
  "data": {
    "attributes": {
      "command": "forceRestart"
    }
  }
}

Response Body

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
messagestringResponse status message
Successful Response (200)
Code iconjson
{
  "meta": {
    "executionTime": 27,
    "generatedAt": 1767789946006
  },
  "message": "Application has been force restarted"
}

Error Response (4xx/5xx)

ParameterTypeDescription
messagestringHuman-readable error message
Application Not Found (404)
Code iconjson
{
  "message": "Application not found"
}
Error Response
Code iconjson
{
  "message": "Error message"
}
Support Needed?

Create a free ticket and our support team will provide you necessary assistance.

Blog
Support
About us
Patents
Term of use
Privacy policy
Contact
©2026 Storm Streaming Media. All Rights Reserved.