Permission required:
workspace:agent_bindPath Parameters
string
required
Workspace identifier
Request Body
string
required
Identifier of the agent to bind to the workspace
Response
object
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X POST 'https://app.memorylake.ai/openapi/memorylake/api/v3/workspaces/ws_abc123/agents' \
-H 'Authorization: Bearer sk_xxxxxx' \
-H 'Content-Type: application/json' \
-d '{
"agent_id": "agt_r8k2m1n3"
}'
{
"success": true,
"data": {
"name": "Support Assistant",
"agent_id": "agt_r8k2m1n3",
"custom_id": "support-assistant-v1",
"latest_version": 3,
"bound_at": "2025-04-01T08:00:00Z"
}
}
Bind an agent to a workspace to enable A2A communication
POST /openapi/memorylake/api/v3/workspaces/{workspaceId}/agents
workspace:agent_bindcurl -X POST 'https://app.memorylake.ai/openapi/memorylake/api/v3/workspaces/ws_abc123/agents' \
-H 'Authorization: Bearer sk_xxxxxx' \
-H 'Content-Type: application/json' \
-d '{
"agent_id": "agt_r8k2m1n3"
}'
{
"success": true,
"data": {
"name": "Support Assistant",
"agent_id": "agt_r8k2m1n3",
"custom_id": "support-assistant-v1",
"latest_version": 3,
"bound_at": "2025-04-01T08:00:00Z"
}
}