Delete a application by ID. Delete an application by its unique ID. Use the Get All Applications API to retrieve the application ID.
Request URL https://{server-hostname}:8383/sse/api/applications/[0-9]+
Scope
Header Authorization: d92d4xxxxxxxxxxxxx15f52
Request Parameters - Request Headers Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request DELETE \
--url 'https://appdomain/sse/api/applications/[0-9]+' \
--header 'Accept: application/json' \
--header 'Authorization: d92d4xxxxxxxxxxxxx15f52'import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.io.IOException;
import java.net.http.HttpTimeoutException;
public class Main {
public static void main(String[] args) {
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://appdomain/sse/api/applications/[0-9]+"))
.header("Accept", "application/json")
.header("Authorization", " d92d4xxxxxxxxxxxxx15f52")
.method("DELETE", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
import http.client
conn = http.client.HTTPSConnection("appdomain")
headers = {
'Accept': "application/json",
'Authorization': " d92d4xxxxxxxxxxxxx15f52"
}
conn.request("DELETE", "/sse/api/applications/[0-9]+", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
headersMap = Map();
headersMap.put("Accept", "application/json");
response = invokeUrl
[
url: "https://appDomain/sse/api/applications/[0-9]+"
type: DELETE
headers: headersMap
connection: connection_name
]
info response;
$headers=@{}
$headers.Add("Accept", "application/json")
$headers.Add("Authorization", " d92d4xxxxxxxxxxxxx15f52")
$response = Invoke-WebRequest -Uri 'https://appdomain/sse/api/applications/[0-9]+' -Method DELETE -Headers $headersResponse Parameters - HTTP code 400 Response Body - application/json JSON Object
Hide Sub-Attributes errorCode string
Application-specific error code (API_APPLICATION_002) indicating an unexpected error occurred while deleting the application
errorMsg string
Generic error message for the application deletion failure
- HTTP code 401 Response Body - application/json JSON Object
Hide Sub-Attributes errorCode long
Unauthorized error code returned when authentication credentials are missing, expired, or invalid (authentication=required)
errorMsg string
Authentication failure reason
- HTTP code 403 Response Body - application/json JSON Object
Hide Sub-Attributes errorCode long
Forbidden error code returned when the authenticated user does not have the required uem-roles (e.g., DataEncryption_Admin or DataEncryptionRecoveryKey_Admin)
errorMsg string
Message indicating insufficient privileges to access this resource
- HTTP code 404 Response Body - application/json JSON Object
Hide Sub-Attributes errorCode string
Application-specific error code (API_APPLICATION_003) indicating the application to be deleted does not exist in the database
errorMsg string
Message indicating the given Application was not found
Possible Response Codes Sample Response: HTTP 204 204 No Content▼ Show full
Sample Response: HTTP 400 An unexpected error occurred during application deletion
Copied!
{
"errorCode": "API_APPLICATION_002",
"errorMsg": "Unknown error while adding application."
}
▼ Show full
Sample Response: HTTP 401 Authentication credentials are missing or invalid
Copied!
{
"errorMessage": "You are not authorized to perform this action",
"errorCode": "UNAUTHORIZED"
}
▼ Show full
Sample Response: HTTP 403 User does not have the required SSE_Write role
Copied!
{
"errorMessage": "User does not have permission to perform this operation",
"errorCode": "FORBIDDEN"
}
▼ Show full
Sample Response: HTTP 404 Application with the specified ID does not exist
Copied!
{
"errorCode": "API_APPLICATION_003",
"errorMsg": "Given Application is not found"
}
▼ Show full
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.