iachat/swagger/paths/contact/crud.yml
2020-02-23 12:54:29 +05:30

43 lines
839 B
YAML

get:
tags: [Contact]
summary: Show Contact
parameters:
- name: id
in: path
type: number
description: ID of contact
required: true
responses:
200:
description: Success
schema:
$ref: '#/definitions/extended_contact'
404:
description: Contact not found
403:
description: Access denied
put:
tags: [Contact]
summary: Update Contact
parameters:
- name: id
in: path
type: number
description: ID of the contact
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