Chatwoot/swagger/paths/contact/crud.yml

51 lines
1.1 KiB
YAML
Raw Normal View History

2020-02-23 07:24:29 +00:00
get:
tags:
- Contact
operationId: contactDetails
2020-02-23 07:24:29 +00:00
summary: Show Contact
description: Get a contact belonging to the account using ID
2020-02-23 07:24:29 +00:00
parameters:
- $ref: '#/parameters/account_id'
2020-02-23 07:24:29 +00:00
- name: id
in: path
type: number
description: ID of the contact
2020-02-23 07:24:29 +00:00
required: true
responses:
200:
description: Success
schema:
$ref: '#/definitions/extended_contact'
404:
description: Contact not found
403:
description: Access denied
put:
tags:
- Contact
operationId: contactUpdate
2020-02-23 07:24:29 +00:00
summary: Update Contact
description: Update a contact belonging to the account using ID
2020-02-23 07:24:29 +00:00
parameters:
- $ref: '#/parameters/account_id'
2020-02-23 07:24:29 +00:00
- name: id
in: path
type: number
description: ID of the contact
2020-02-23 07:24:29 +00:00
required: true
- name: data
in: body
required: true
schema:
$ref: '#/definitions/contact_update'
responses:
204:
description: Success
schema:
$ref: '#/definitions/contact_base'
404:
description: Contact not found
403:
description: Access denied