chore: Update Contact Inbox create API documentation (#1650)
This commit is contained in:
parent
7542330d61
commit
2e19de5d01
2 changed files with 23 additions and 6 deletions
|
@ -5,9 +5,16 @@ post:
|
||||||
description: Create a contact inbox record for an inbox
|
description: Create a contact inbox record for an inbox
|
||||||
summary: Create contact inbox
|
summary: Create contact inbox
|
||||||
parameters:
|
parameters:
|
||||||
- name: inbox_id
|
- name: data
|
||||||
in: params
|
in: body
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
inbox_id:
|
||||||
type: number
|
type: number
|
||||||
|
description: The id of the inbox
|
||||||
|
required: true
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: Success
|
description: Success
|
||||||
|
|
|
@ -948,9 +948,19 @@
|
||||||
"summary": "Create contact inbox",
|
"summary": "Create contact inbox",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"name": "inbox_id",
|
"name": "data",
|
||||||
"in": "params",
|
"in": "body",
|
||||||
"type": "number"
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"inbox_id": {
|
||||||
|
"type": "number",
|
||||||
|
"description": "The id of the inbox",
|
||||||
|
"required": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"responses": {
|
"responses": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue