GET
/
api
/
v1
/
orgs
/
organizations
/
{org_id}
/
members
import requests

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

headers = {"Authorization": "<api-key>"}

response = requests.request("GET", url, headers=headers)

print(response.text)
{
  "members": [
    {
      "user_id": "<string>",
      "role": "<string>"
    }
  ]
}

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

Response

200
application/json
Successful response
members
object[]

List of members belonging to the organization