From 8bd0d2dc246575e653cd8b526e21d4655df07d17 Mon Sep 17 00:00:00 2001 From: Dev Khant Date: Thu, 17 Apr 2025 23:10:54 +0530 Subject: [PATCH] Doc: fix curl for v2 get_all (#2567) --- docs/openapi.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/openapi.json b/docs/openapi.json index 4a223b9d..97527fc8 100644 --- a/docs/openapi.json +++ b/docs/openapi.json @@ -1229,7 +1229,7 @@ }, { "lang": "cURL", - "source": "curl -X POST 'https://api.mem0.ai/v2/memories/' \\\n-H 'Authorization: Token your-api-key' \\\n-H 'Content-Type: application/json' \\\n-d '{\n \"filters\": {\n \"AND\": [\n { \"user_id\": \"alex\" },\n { \"created_at\": { \"gte\": \"2024-07-01\", \"lte\": \"2024-07-31\" } }\n ]\n }\n}'" + "source": "curl -X POST 'https://api.mem0.ai/v2/memories/' \\\n-H 'Authorization: Token your-api-key' \\\n-H 'Content-Type: application/json' \\\n-d '{\n \"filters\": {\n \"AND\": [\n { \"user_id\": \"alex\" },\n { \"created_at\": { \"gte\": \"2024-07-01\", \"lte\": \"2024-07-31\" } }\n ]\n },\n \"org_id\": \"your-org-id\",\n \"project_id\": \"your-project-id\"\n}'" }, { "lang": "Go",