> ## 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.

# List email suppressions (platform-admin)

> List email suppressions with cursor pagination.

Supports optional filters: scope, filter[team_id], filter[hub_id].
Returns JSON:API collection with pagination links.



## OpenAPI

````yaml /openapi/mio-openapi.json get /v1/admin/email-suppressions
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:
  /v1/admin/email-suppressions:
    get:
      tags:
        - email-suppressions-admin
      summary: List email suppressions (platform-admin)
      description: |-
        List email suppressions with cursor pagination.

        Supports optional filters: scope, filter[team_id], filter[hub_id].
        Returns JSON:API collection with pagination links.
      operationId: >-
        email_suppressions_admin.get_email_suppressions_admin_get_v1_admin_email_suppressions
      parameters:
        - description: 'Filter by scope: platform | team | hub.'
          in: query
          name: scope
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by scope: platform | team | hub.'
            title: Scope
        - in: query
          name: filter[team_id]
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Filter[Team Id]
        - in: query
          name: filter[hub_id]
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Filter[Hub Id]
        - in: query
          name: page[after]
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Page[After]
        - in: query
          name: page[size]
          required: false
          schema:
            default: 20
            maximum: 100
            minimum: 1
            title: Page[Size]
            type: integer
      responses:
        '200':
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/SuppressionListResponse'
          description: Successful Response
        '400':
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/JsonApiErrorResponse'
          description: Validation error
        '401':
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/JsonApiErrorResponse'
          description: Not authenticated
        '403':
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/JsonApiErrorResponse'
          description: Forbidden
        '404':
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/JsonApiErrorResponse'
          description: Resource not found
        '422':
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/JsonApiErrorResponse'
          description: Unprocessable entity
      security:
        - HTTPBearer: []
components:
  schemas:
    SuppressionListResponse:
      description: Collection JSON:API response.
      properties:
        data:
          items:
            $ref: '#/components/schemas/SuppressionResource'
          title: Data
          type: array
        links:
          anyOf:
            - additionalProperties:
                anyOf:
                  - type: string
                  - type: 'null'
              type: object
            - type: 'null'
          title: Links
        meta:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Meta
      required:
        - data
      title: SuppressionListResponse
      type: object
    JsonApiErrorResponse:
      description: Error JSON:API response.
      properties:
        errors:
          items:
            $ref: '#/components/schemas/JsonApiError'
          title: Errors
          type: array
        meta:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Meta
      required:
        - errors
      title: JsonApiErrorResponse
      type: object
    SuppressionResource:
      description: JSON:API resource object for email-suppression.
      properties:
        attributes:
          $ref: '#/components/schemas/SuppressionAttributes'
        id:
          title: Id
          type: string
        links:
          anyOf:
            - additionalProperties:
                anyOf:
                  - type: string
                  - type: 'null'
              type: object
            - type: 'null'
          title: Links
        type:
          default: email_suppressions
          title: Type
          type: string
      required:
        - id
        - attributes
      title: SuppressionResource
      type: object
    JsonApiError:
      properties:
        code:
          anyOf:
            - type: string
            - type: 'null'
          title: Code
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
        meta:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Meta
        source:
          anyOf:
            - additionalProperties:
                type: string
              type: object
            - type: 'null'
          title: Source
        status:
          title: Status
          type: string
        title:
          title: Title
          type: string
      required:
        - status
        - title
      title: JsonApiError
      type: object
    SuppressionAttributes:
      description: Attributes block for an email-suppression resource object.
      properties:
        email_address:
          title: Email Address
          type: string
        hub_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Hub Id
        is_active:
          title: Is Active
          type: boolean
        lifted_at:
          anyOf:
            - {}
            - type: 'null'
          title: Lifted At
        lifted_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Lifted By
        reason:
          title: Reason
          type: string
        scope:
          title: Scope
          type: string
        source_event_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Event Type
        suppressed_at:
          title: Suppressed At
        team_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Team Id
      required:
        - email_address
        - scope
        - reason
        - is_active
        - suppressed_at
      title: SuppressionAttributes
      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
    HTTPBearer:
      scheme: bearer
      type: http

````