POST
/
api
/
v1
/
orgs
/
organizations
/
{org_id}
/
projects
import requests

url = "https://api.mem0.ai/api/v1/orgs/organizations/{org_id}/projects/"

payload = {"name": "<string>"}
headers = {
    "Authorization": "<api-key>",
    "Content-Type": "application/json"
}

response = requests.request("POST", url, json=payload, headers=headers)

print(response.text)
{
  "message": "Project created successfully."
}

Authorizations

Authorization
string
header
required

API key authentication. Prefix your Mem0 API key with 'Token '. Example: 'Token your_api_key'

Path Parameters

org_id
string
required

Unique identifier of the organization

Body

application/json
name
string
required

Name of the project to be created

Response

200
application/json
Project created successfully
message
string
Example:

"Project created successfully."