28 lines
651 B
YAML
28 lines
651 B
YAML
patch:
|
|
tags:
|
|
- Widget
|
|
operationId: widgetInboxUpdate
|
|
summary: Update a website inbox
|
|
description: Update widget color of an inbox
|
|
parameters:
|
|
- name: data
|
|
in: body
|
|
required: true
|
|
schema:
|
|
type: object
|
|
properties:
|
|
website:
|
|
type: object
|
|
properties:
|
|
widget_color:
|
|
type: string
|
|
description: A Hex-color string used to customize the widget
|
|
responses:
|
|
200:
|
|
description: Success
|
|
schema:
|
|
$ref: '#/definitions/inbox'
|
|
404:
|
|
description: Inbox not found
|
|
403:
|
|
description: Access denied
|