> ## Documentation Index
> Fetch the complete documentation index at: https://docs.member.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Moderation Report Summary



## OpenAPI

````yaml /openapi/mio-openapi.json get /api/v1/admin/teams/{team_id}/hubs/{hub_id}/moderation/content/{content_type}/{content_id}/report-summary
openapi: 3.1.0
info:
  description: >-
    Production API reference for Membership.io. Use the authored guides for
    workflows and the generated endpoint pages for exact parameters and schemas.
  title: Membership.io API
  version: 0.1.0
servers:
  - description: Production
    url: https://api.member.dev
security:
  - bearerAuth: []
paths:
  /api/v1/admin/teams/{team_id}/hubs/{hub_id}/moderation/content/{content_type}/{content_id}/report-summary:
    get:
      tags:
        - community-moderation-admin
      summary: Get Moderation Report Summary
      operationId: >-
        community_moderation_admin.get_community_moderation_admin_get_admin_teams_by_team_id_hubs_by_hub_id_moderation_content_by_content_type_by_content_id_report_summary
      parameters:
        - in: path
          name: team_id
          required: true
          schema:
            title: Team Id
            type: string
        - in: path
          name: hub_id
          required: true
          schema:
            title: Hub Id
            type: string
        - in: path
          name: content_type
          required: true
          schema:
            title: Content Type
            type: string
        - in: path
          name: content_id
          required: true
          schema:
            title: Content Id
            type: string
      responses:
        '200':
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ModerationReportSummaryResponse'
          description: Successful Response
        '422':
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    ModerationReportSummaryResponse:
      properties:
        data:
          $ref: '#/components/schemas/ModerationReportSummaryResource'
      required:
        - data
      title: ModerationReportSummaryResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ModerationReportSummaryResource:
      properties:
        attributes:
          $ref: '#/components/schemas/ModerationReportSummaryAttributes'
        id:
          title: Id
          type: string
        type:
          title: Type
          type: string
      required:
        - id
        - type
        - attributes
      title: ModerationReportSummaryResource
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
    ModerationReportSummaryAttributes:
      description: >-
        Aggregate-only report summary for ONE moderation target.


        Deliberately contains no reporter identity, reporter note, raw report
        row,

        or moderation action — only counts and reason buckets. report_count
        spans

        ALL report statuses (pending, dismissed, actioned), matching the
        moderation

        console's removed-content count.
      properties:
        reason_breakdown:
          default: []
          items:
            $ref: '#/components/schemas/ReasonBreakdownItem'
          title: Reason Breakdown
          type: array
        report_count:
          title: Report Count
          type: integer
        reportable_id:
          title: Reportable Id
          type: string
        reportable_type:
          title: Reportable Type
          type: string
      required:
        - reportable_type
        - reportable_id
        - report_count
      title: ModerationReportSummaryAttributes
      type: object
    ReasonBreakdownItem:
      properties:
        count:
          title: Count
          type: integer
        label:
          anyOf:
            - type: string
            - type: 'null'
          title: Label
        reason_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Reason Id
      required:
        - reason_id
        - count
      title: ReasonBreakdownItem
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT or mio_sk API key
      description: >-
        Send platform JWTs, contact JWTs, or team API keys as `Authorization:
        Bearer <token>`.
      scheme: bearer
      type: http

````