Workspaces
Enter your bearer token in the format 'your-token' (without quotes or 'Bearer' prefix)
^[a-z0-9]+(?:[-_][a-z0-9]+)*$Successful Response
Validation Error
POST /workspaces HTTP/1.1
Host: api.activeloop.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 27
{
"id": "text",
"name": "text"
}No content
Enter your bearer token in the format 'your-token' (without quotes or 'Bearer' prefix)
Successful Response
Validation Error
GET /workspaces HTTP/1.1
Host: api.activeloop.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": [
{
"id": "text",
"name": "text",
"creator_user_id": "text",
"org_id": "text",
"created_at": "2025-11-20T10:28:50.251Z"
}
]
}Enter your bearer token in the format 'your-token' (without quotes or 'Bearer' prefix)
The ID of the workspace to get.
Successful Response
Validation Error
GET /workspaces/{workspace_id} HTTP/1.1
Host: api.activeloop.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"name": "text",
"creator_user_id": "text",
"org_id": "text",
"created_at": "2025-11-20T10:28:50.251Z"
}Enter your bearer token in the format 'your-token' (without quotes or 'Bearer' prefix)
The ID of the workspace to delete.
Successful Response
Validation Error
DELETE /workspaces/{workspace_id} HTTP/1.1
Host: api.activeloop.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Enter your bearer token in the format 'your-token' (without quotes or 'Bearer' prefix)
The ID of the workspace to add user to.
Successful Response
Validation Error
POST /workspaces/{workspace_id}/user HTTP/1.1
Host: api.activeloop.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"user": "text",
"access": "writer"
}No content
Enter your bearer token in the format 'your-token' (without quotes or 'Bearer' prefix)
The ID of the workspace to update user info.
Successful Response
Validation Error
PUT /workspaces/{workspace_id}/user HTTP/1.1
Host: api.activeloop.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"user": "text",
"access": "writer"
}No content
Enter your bearer token in the format 'your-token' (without quotes or 'Bearer' prefix)
The ID of the workspace to remove user from.
The ID of the user.
Successful Response
Validation Error
DELETE /workspaces/{workspace_id}/user/{user_id} HTTP/1.1
Host: api.activeloop.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Enter your bearer token in the format 'your-token' (without quotes or 'Bearer' prefix)
The ID of the workspace to list users from.
Successful Response
Validation Error
GET /workspaces/{workspace_id}/users HTTP/1.1
Host: api.activeloop.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": [
{
"user_id": "text",
"access": "writer",
"created_at": "2025-11-20T10:28:50.251Z"
}
]
}Last updated

