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

# Lift (un-suppress) a hub-scoped suppression

> Lift a suppression for this hub.

Verifies that the row's hub_id matches the path parameter before lifting.
Returns 404 on id-not-found OR hub_id mismatch (existence is not leaked
across hubs — no 403 that would confirm a row exists in another hub).

Sets is_active=FALSE, lifted_at=NOW(), lifted_by=current user sub.



## OpenAPI

````yaml /openapi/mio-openapi.json delete /v1/hubs/{hub_id}/email-suppressions/{suppression_id}
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/hubs/{hub_id}/email-suppressions/{suppression_id}:
    delete:
      tags:
        - email-suppressions-hub
      summary: Lift (un-suppress) a hub-scoped suppression
      description: >-
        Lift a suppression for this hub.


        Verifies that the row's hub_id matches the path parameter before
        lifting.

        Returns 404 on id-not-found OR hub_id mismatch (existence is not leaked

        across hubs — no 403 that would confirm a row exists in another hub).


        Sets is_active=FALSE, lifted_at=NOW(), lifted_by=current user sub.
      operationId: >-
        email_suppressions_hub.delete_email_suppressions_hub_delete_v1_hubs_by_hub_id_email_suppressions_by_suppression_id
      parameters:
        - in: path
          name: hub_id
          required: true
          schema:
            title: Hub Id
            type: string
        - in: path
          name: suppression_id
          required: true
          schema:
            title: Suppression Id
            type: string
      responses:
        '204':
          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:
    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
    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
  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

````