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

# Delete content item

> At least one of the parameters must be provided to identify the content item.



## OpenAPI

````yaml openapi/feed-v1.json DELETE /v1/Content
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/Content:
    delete:
      tags:
        - S2S
      summary: Delete content item
      description: >-
        At least one of the parameters must be provided to identify the content
        item.
      parameters:
        - name: id
          in: query
          description: >-
            The internal unique identifier of the content item (optional if
            externalId is provided).
          schema:
            type: integer
            format: int64
        - name: externalId
          in: query
          description: >-
            The external identifier of the content item (optional if id is
            provided).
          schema:
            type: string
        - name: deletedBy
          in: query
          description: >-
            Optional identifier of the actor deleting the content item; defaults
            to "integration" in the published event.
          schema:
            type: string
      responses:
        '200':
          description: OK
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
components:
  schemas:
    Microsoft.AspNetCore.Mvc.ProblemDetails:
      type: object
      properties:
        type:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        status:
          type: integer
          format: int32
          nullable: true
        detail:
          type: string
          nullable: true
        instance:
          type: string
          nullable: true
      additionalProperties: {}
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        Opaque Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````