DELETE
/
agents
/
{agent_id}
Python
from datagrid_ai import Datagrid

client = Datagrid(
    api_key="My API Key",
)
client.agents.delete(
    "agent_id",
)

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string
required

The ID of the agent to delete

Response

204

Agent deleted successfully