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

# Unpublish a content feed

> The content item is identified using the externalId provided in the route.



## OpenAPI

````yaml openapi/feed-v1.json PATCH /v1/Feed/externalId/{externalId}/unpublish
openapi: 3.0.4
info:
  title: Feed.Api
  version: v1
servers:
  - url: https://{host}/feed
    description: Your Lobyco environment
    variables:
      host:
        default: your-environment.lobyco.net
        description: >-
          The API host for your Lobyco environment. Replace it with the host you
          were given — this placeholder does not resolve.
security:
  - Bearer: []
paths:
  /v1/Feed/externalId/{externalId}/unpublish:
    patch:
      tags:
        - S2S
      summary: Unpublish a content feed
      description: >-
        The content item is identified using the externalId provided in the
        route.
      parameters:
        - name: externalId
          in: path
          description: The external identifier of the content item to unpublish.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
components:
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        Opaque Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````