# Destroy Homepage

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/content/management/mobile_app/homepage:
    delete:
      summary: Destroy Homepage
      deprecated: false
      description: ''
      tags:
        - API Reference/Management API/Mobile App/Homepage
      parameters:
        - name: Content-Type
          in: header
          description: '[Details](doc-341635)'
          required: true
          example: application/json
          schema:
            type: string
            default: application/json
            const: application/json
        - name: X-User-Agent
          in: header
          description: Arbitrary identifier of your client. [Details](doc-341635)
          required: true
          example: '{{X_USER_AGENT}}'
          schema:
            type: string
            default: '{{X_USER_AGENT}}'
        - name: X-Product-Name
          in: header
          description: API Product for API context. [Details](doc-341635)
          required: true
          example: '{{PRODUCT_NAME}}'
          schema:
            type: string
            default: '{{PRODUCT_NAME}}'
        - name: X-Loyalty-Club-Slug
          in: header
          description: LoyaltyClub for API context. [Details](doc-342138)
          required: false
          example: '{{LOYALTY_CLUB_SLUG}}'
          schema:
            type: string
            default: '{{LOYALTY_CLUB_SLUG}}'
        - name: X-Customer
          in: header
          description: Customer for API context.  [Details](doc-342139)
          required: false
          example: '{{CUSTOMER_ID}}'
          schema:
            type: string
            default: '{{CUSTOMER_ID}}'
        - name: X-Client-Authorization
          in: header
          description: '[Token](doc-342128) Authorization.'
          example: '{{API_TOKEN}}'
          schema:
            type: string
            default: '{{API_TOKEN}}'
      requestBody:
        content:
          application/json:
            schema:
              type: string
            examples: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  home_page:
                    anyOf:
                      - $ref: '#/components/schemas/HomePage%3A%3AComponents'
                      - $ref: '#/components/schemas/HomePage%3A%3ALandingPageId'
                      - $ref: '#/components/schemas/HomePage%3A%3AExternalUrl'
                x-apidog-orders:
                  - home_page
                required:
                  - home_page
                x-apidog-ignore-properties: []
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: API Reference/Management API/Mobile App/Homepage
      x-apidog-status: released
      x-run-in-apidog: https://app.eu.apidog.com/web/project/346351/apis/api-4063759-run
components:
  schemas:
    HomePage::ExternalUrl:
      type: object
      properties:
        type:
          type: string
          const: external_url
        external_url:
          type: string
          format: uri
          description: Address of the external page
      x-apidog-orders:
        - type
        - external_url
      required:
        - type
        - external_url
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    HomePage::LandingPageId:
      type: object
      properties:
        type:
          type: string
          const: landing_page_id
        landing_page_id:
          $ref: '#/components/schemas/id'
          description: ID of the [Landing Page](doc-341713)
      x-apidog-orders:
        - type
        - landing_page_id
      required:
        - type
        - landing_page_id
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    id:
      type: integer
      description: Primary identifier of the record
      format: uint64
      readOnly: true
      examples:
        - 1
      x-apidog-folder: ''
    HomePage::Components:
      type: object
      properties:
        type:
          type: string
          const: components
        components:
          type: array
          items:
            type: object
            properties: {}
            x-apidog-orders: []
            x-apidog-ignore-properties: []
          description: List of components the Page is built of
      x-apidog-orders:
        - type
        - components
      required:
        - type
        - components
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.mpc.dev.placewise.com
    description: Staging
security: []

```