get: tags: - Contact operationId: contactList description: Listing all the contacts with pagination (Page size = 15) summary: List Contacts parameters: - $ref: '#/parameters/contact_sort_param' - $ref: '#/parameters/page' responses: 200: description: Success schema: $ref: '#/definitions/contact_list' 400: description: Bad Request Error schema: $ref: '#/definitions/bad_request_error' post: tags: - Contact operationId: contactCreate description: Create New Contact summary: Create Contact parameters: - name: data in: body required: true schema: $ref: '#/definitions/contact_create' responses: 200: description: Success schema: $ref: '#/definitions/extended_contact' 400: description: Bad Request Error schema: $ref: '#/definitions/bad_request_error'