Python
import requests url = "https://api.mem0.ai/api/v1/orgs/organizations/{org_id}/projects/" headers = {"Authorization": "Token <api-key>"} response = requests.request("GET", url, headers=headers) print(response.text)
[ { "id": 123, "project_id": "<string>", "name": "<string>", "description": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "members": [ { "username": "<string>", "role": "<string>" } ] } ]
Retrieve a list of projects for a specific organization.
Show child attributes
Was this page helpful?