Get connection (by provider)
POST/v3/connections/{provider}/connection
Get connection details with provider and container tags
Body ParametersJSON
Get connection (by provider)
curl https://api.supermemory.ai/v3/connections/$PROVIDER/connection \
-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"
}
}