v1
latestOpenAPI 3.0.22026-07-174617345.8 KBPages
Delete a certain page that belongs to a certain agent.
Delete a specific page within an agent (formerly known as project) based on its unique projectId and pageId. This endpoint allows you to remove a particular page from the agent, permanently deleting its associated context. Here is an example to delete a certain page: API SDK.
delete/api/v1/projects/{projectId}/pages/{pageId}
Path parameters
projectIdinteger required
The unique identifier of the agent (formerly known as project).
pageIdinteger required
The page id
Response
Agent deleted successfully
Example response
{
"status": "success",
"data": {
"deleted": true
}
}