API for managing personal memory items with authentication and user-specific data.
API for managing personal memory items with authentication and user-specific data.
This API supports three authentication methods:
X-API-Key headerX-API-Key: <your-api-key>X-Session-Token headerX-Session-Token: <your-session-token>Authorization headerAuthorization: Bearer <token>All endpoints require one of these authentication methods.
Schema name in format 'company:domain:version' (e.g. 'acme:support_tickets:1.0.0')
Human-readable description
Human-readable description
Human-readable description
Frequency field definitions (1-14 fields, one per frequency band)
Hz value (must be one of the 14 standard frequencies: 0.1, 0.5, 2.0, 4.0, 6.0, 10.0, 12.0, 18.0, 19.0, 24.0, 30.0, 40.0, 50.0, 70.0)
Field type
Allowed values for enum type
Allowed values for enum type
Field description
Field description
Field description
curl -i -X POST \
https://memoryserver-staging-223473570766.us-west1.run.app/v1/holographic/domains \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"description": "Support ticket classification schema",
"fields": [
{
"frequency": 4,
"name": "priority",
"type": "enum",
"values": [
"P0",
"P1",
"P2",
"P3"
],
"weight": 0.9
},
{
"frequency": 6,
"name": "component",
"type": "free_text",
"weight": 0.7
},
{
"frequency": 12,
"name": "resolution_type",
"type": "enum",
"values": [
"bug_fix",
"config",
"wontfix"
],
"weight": 0.8
}
],
"name": "acme:support_tickets:1.0.0"
}'{ "status": "success", "schema_id": "string", "domain": "string", "num_frequencies": 0 }
Neo4j AuraDB instance configuration
Neo4j AuraDB instance configuration
curl -i -X PUT \
'https://memoryserver-staging-223473570766.us-west1.run.app/v1/namespace/{namespace_id}/instance?validate=false' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: string' \
-d '{
"neo4j": {
"bolt_url": "neo4j+s://abc12345.databases.neo4j.io",
"graphql_endpoint": "https://abc12345-graphql.production-orch-0042.neo4j.io/graphql",
"password": "my-secret-password",
"username": "neo4j"
},
"provider": "gcp",
"region": "us-west1"
}'{ "code": 200, "status": "success", "data": { "neo4j": { … }, "provider": "string", "region": "string", "scope": "string" }, "error": "string", "details": {} }
curl -i -X GET \
'https://memoryserver-staging-223473570766.us-west1.run.app/v1/namespace/{namespace_id}/instance' \
-H 'X-API-Key: string'{ "code": 200, "status": "success", "data": { "neo4j": { … }, "provider": "string", "region": "string", "scope": "string" }, "error": "string", "details": {} }