Notes
Create Note
POST
/
v2
/
notes
curl "https://api.mem.ai/v2/notes" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer $MEM_API_KEY" \
--data '{
"content": "# Sales Call with Acme Corp
Contact: John Smith (john@acme.com)
Interested in enterprise plan. Follow up next week.",
}'
{
"collection_ids": [
"59508b41-8770-4855-aa37-302b1e09aee7",
"026b426c-14fb-4f22-8d98-7a9121bfaec8"
],
"content": "# Sales Call with Acme Corp\n\nContact: John Smith (john@acme.com)\n\nInterested in enterprise plan. Follow up next week.\n\n## Action Items\n- Schedule follow-up call next week\n- Send enterprise pricing information\n\n## Key Points\n- Interested in enterprise plan\n- Contact: John Smith (john@acme.com)",
"created_at": "2025-04-11T04:47:14.457Z",
"id": "5e29c8a2-c73b-476b-9311-e2579712d4b1",
"request_id": "api-request-036ed6c7-de00-459f-a89b-43d26aafe522",
"title": "Sales Call with Acme Corp",
"updated_at": "2025-04-11T04:47:19.702Z"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200 - application/json
OK
The response is of type object
.
curl "https://api.mem.ai/v2/notes" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer $MEM_API_KEY" \
--data '{
"content": "# Sales Call with Acme Corp
Contact: John Smith (john@acme.com)
Interested in enterprise plan. Follow up next week.",
}'
{
"collection_ids": [
"59508b41-8770-4855-aa37-302b1e09aee7",
"026b426c-14fb-4f22-8d98-7a9121bfaec8"
],
"content": "# Sales Call with Acme Corp\n\nContact: John Smith (john@acme.com)\n\nInterested in enterprise plan. Follow up next week.\n\n## Action Items\n- Schedule follow-up call next week\n- Send enterprise pricing information\n\n## Key Points\n- Interested in enterprise plan\n- Contact: John Smith (john@acme.com)",
"created_at": "2025-04-11T04:47:14.457Z",
"id": "5e29c8a2-c73b-476b-9311-e2579712d4b1",
"request_id": "api-request-036ed6c7-de00-459f-a89b-43d26aafe522",
"title": "Sales Call with Acme Corp",
"updated_at": "2025-04-11T04:47:19.702Z"
}
Assistant
Responses are generated using AI and may contain mistakes.