Update an application's configuration or status
The unique identifier of the application
Update data (name, description, status)
The updated application
401 - Not authenticated
404 - Application not found
import { updateApplication } from "@cpod/sdk";const updated = await updateApplication("app-123", { status: "active", description: "Updated description",}); Copy
import { updateApplication } from "@cpod/sdk";const updated = await updateApplication("app-123", { status: "active", description: "Updated description",});
Update an application's configuration or status