SchoolScout API
ListsMembership

Get list membership for entity

Check which lists a specific entity belongs to.

GET
/lists/membership

Check which lists a specific entity belongs to.

AuthorizationBearer <token>

API key (sk_live_... prefix). Generate keys in the UI under Settings > API Keys, then send it as Authorization: Bearer sk_live_...

In: header

Query Parameters

entity_id*string
entity_type*string

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/lists/membership?entity_id=string&entity_type=string"
{
  "data": [
    {
      "list_id": "550e8400-e29b-41d4-a716-446655440000",
      "list_name": "string",
      "list_color": "string"
    }
  ]
}
{
  "error": "string",
  "message": "string",
  "statusCode": -9007199254740991
}