30 lines
723 B
YAML
30 lines
723 B
YAML
post:
|
|
tags:
|
|
- Contact
|
|
operationId: contactInboxCreation
|
|
description: Create a contact inbox record for an inbox
|
|
summary: Create contact inbox
|
|
parameters:
|
|
- name: data
|
|
in: body
|
|
required: true
|
|
schema:
|
|
type: object
|
|
properties:
|
|
inbox_id:
|
|
type: number
|
|
description: The ID of the inbox
|
|
required: true
|
|
source_id:
|
|
$ref: '#/parameters/source_id'
|
|
responses:
|
|
200:
|
|
description: Success
|
|
schema:
|
|
$ref: '#/definitions/contact_inboxes'
|
|
401:
|
|
description: Authentication error
|
|
schema:
|
|
$ref: '#/definitions/bad_request_error'
|
|
422:
|
|
description: Incorrect payload
|