v1

latestOpenAPI 3.0.22026-07-174617345.8 KB
Agents

Delete a certain agent.

Delete an agent (formerly known as project) by its unique project ID. This endpoint allows you to remove an existing agent from the system based on its ID. Here is an example to delete an agent: API SDK.

delete/api/v1/projects/{projectId}

Path parameters

projectIdinteger required

The unique identifier of the agent (formerly known as project).

Response

Agent deleted successfully

status'error' | 'success'

The status of the response

Example response

{
  "status": "success",
  "data": {
    "deleted": true
  }
}