Application Delete

Deletes a streaming application.

Request

Property Value
Method DELETE
URL /api/applications/{appName}
Content-Type application/json
Authentication Bearer Token

Path Parameters

Parameter Type Required Description
appName string Yes Application name

Response

Status Codes

Code Description
200 Success - Application deleted
401 Unauthorized - Invalid or missing token
404 Not Found - Application does not exist
429 Too Many Requests - Rate limit exceeded
500 Internal Server Error

Successful Response (200)

{
  "meta": {
    "executionTime": 8,
    "generatedAt": 1766061597478
  },
  "message": "Application mono has been deleted"
}

Response Body

Parameter Type Description
message string Response status message

Metadata

Parameter Type Description
meta.executionTime integer Request processing time in milliseconds
meta.generatedAt integer Response generation timestamp (Unix timestamp in ms)

Error Responses

Application Not Found (404)

{
  "message": "Application not found"
}

Error Response Body

Parameter Type Description
message string Human-readable error message