Members

List Member Logs

Lists activity for a member and all of their non-drafted memberships, most recent first.

get/members/{id}/logs

Query parameters

firstinteger

Number of results to return from the start of the range.

afterstring

Return results after this cursor. Use page_info.end_cursor from the previous response to fetch the next page.

lastinteger

Number of results to return from the end of the range.

beforestring

Return results before this cursor. Use page_info.start_cursor from the previous response to fetch the previous page.

Response

member logs listed

Example response

{
  "data": [
    {
      "action": "Membership activated",
      "actor": {
        "id": "user_xxxxxxxxxxxxxx",
        "name": "Dana Whitfield",
        "username": "danawhitfield"
      },
      "created_at": "2026-01-01T12:00:00.000Z"
    }
  ],
  "page_info": {
    "start_cursor": "WyJjdXJzb3IiLDFd"
  }
}

Changes