chore: Update Contact Inbox create API documentation (#1650)

This commit is contained in:
Sojan Jose 2021-01-14 20:36:04 +05:30 committed by GitHub
parent 7542330d61
commit 2e19de5d01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 6 deletions

View file

@ -5,9 +5,16 @@ post:
description: Create a contact inbox record for an inbox
summary: Create contact inbox
parameters:
- name: inbox_id
in: params
type: number
- name: data
in: body
required: true
schema:
type: object
properties:
inbox_id:
type: number
description: The id of the inbox
required: true
responses:
200:
description: Success

View file

@ -948,9 +948,19 @@
"summary": "Create contact inbox",
"parameters": [
{
"name": "inbox_id",
"in": "params",
"type": "number"
"name": "data",
"in": "body",
"required": true,
"schema": {
"type": "object",
"properties": {
"inbox_id": {
"type": "number",
"description": "The id of the inbox",
"required": true
}
}
}
}
],
"responses": {