List connections
POST/v3/connections/list
List all connections
Body ParametersJSON
List connections
curl https://api.supermemory.ai/v3/connections/list \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-d '{
"containerTags": [
"user_123",
"project_123"
]
}'[
{
"id": "id",
"createdAt": "createdAt",
"provider": "provider",
"containerTags": [
"string"
],
"documentLimit": 0,
"email": "email",
"expiresAt": "expiresAt",
"metadata": {
"foo": "bar"
}
}
]Returns Examples
[
{
"id": "id",
"createdAt": "createdAt",
"provider": "provider",
"containerTags": [
"string"
],
"documentLimit": 0,
"email": "email",
"expiresAt": "expiresAt",
"metadata": {
"foo": "bar"
}
}
]