43 lines
979 B
YAML
43 lines
979 B
YAML
delete:
|
|
tags:
|
|
- Landing pages
|
|
security:
|
|
- ApiKeyAuth: []
|
|
parameters:
|
|
- name: id
|
|
in: path
|
|
description: Landing Page ID
|
|
required: true
|
|
schema:
|
|
type: integer
|
|
- name: path
|
|
in: query
|
|
description: Path to the File
|
|
required: true
|
|
schema:
|
|
type: string
|
|
summary: Remove file
|
|
description: Remove the File of the Local Landing Page
|
|
responses:
|
|
'200':
|
|
description: Remove the File of the Local Landing Page
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
success:
|
|
type: boolean
|
|
'400':
|
|
$ref: ../responses/BadRequest.yaml
|
|
'401':
|
|
$ref: ../responses/Unauthorized.yaml
|
|
'402':
|
|
$ref: ../responses/PaymentRequired.yaml
|
|
'404':
|
|
$ref: ../responses/NotFound.yaml
|
|
'406':
|
|
$ref: ../responses/NotAcceptable.yaml
|
|
'500':
|
|
$ref: ../responses/InternalError.yaml
|