Delete

[POST] .../v1/project/delete

Deletes a project. Use this method to delete a project from the active project list when it is no longer needed. The method performs the current project delete behavior for the identified record, updates project cache state and returns UpdateResult with affected row count. The request body must contain a valid project id, the caller needs project delete permission and missing body, invalid id, denied access, missing project, database failures or persistent errors are returned as HTTP 200 ErrorResult business errors.

Request Parameters

Name Type Required Description
id Int64 Required Project ID.

Request Example

{
  "id": 10
}

Response Parameters

Name Type Description
ok Boolean Indicates whether the request completed successfully.
result Update Update operation result.

Response Example

{
  "ok": true,
  "result": {
    "row_affected": 1
  }
}