mirror of
https://github.com/wekan/wekan.git
synced 2026-02-03 23:21:47 +01:00
v4.10
This commit is contained in:
parent
784f960e8f
commit
6ac3249272
7 changed files with 1645 additions and 1438 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -1,7 +1,7 @@
|
|||
swagger: '2.0'
|
||||
info:
|
||||
title: Wekan REST API
|
||||
version: v4.09
|
||||
version: v4.10
|
||||
description: |
|
||||
The REST API allows you to control and extend Wekan with ease.
|
||||
|
||||
|
|
@ -649,6 +649,35 @@ paths:
|
|||
'200':
|
||||
description: |-
|
||||
200 response
|
||||
/api/boards/{board}/cardsByCustomField/{customField}/{customFieldValue}:
|
||||
get:
|
||||
operationId: get_board_customFieldValue
|
||||
tags:
|
||||
- Cards
|
||||
parameters:
|
||||
- name: board
|
||||
in: path
|
||||
description: the board value
|
||||
type: string
|
||||
required: true
|
||||
- name: customField
|
||||
in: path
|
||||
description: the customField value
|
||||
type: string
|
||||
required: true
|
||||
- name: customFieldValue
|
||||
in: path
|
||||
description: the customFieldValue value
|
||||
type: string
|
||||
required: true
|
||||
produces:
|
||||
- application/json
|
||||
security:
|
||||
- UserSecurity: []
|
||||
responses:
|
||||
'200':
|
||||
description: |-
|
||||
200 response
|
||||
/api/boards/{board}/custom-fields:
|
||||
get:
|
||||
operationId: get_all_custom_fields
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue