@ -7,7 +7,7 @@
< meta charset = "utf-8" >
< meta content = "IE=edge,chrome=1" http-equiv = "X-UA-Compatible" >
< meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1" >
< title > Wekan REST API v7.38 < / title >
< title > Wekan REST API v7.39 < / title >
< style >
< / style >
@ -1548,7 +1548,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
< ul class = "toc-list-h1" >
< li >
< a href = "#wekan-rest-api" class = "toc-h1 toc-link" data-title = "Wekan REST API v7.38" > Wekan REST API v7.38 < / a >
< a href = "#wekan-rest-api" class = "toc-h1 toc-link" data-title = "Wekan REST API v7.39" > Wekan REST API v7.39 < / a >
< / li >
@ -1616,6 +1616,11 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
< / li >
< li >
< a href = "#copy_board" class = "toc-h2 toc-link" data-title = "" > copy_board< / a >
< / li >
< li >
< a href = "#add_board_label" class = "toc-h2 toc-link" data-title = "" > add_board_label< / a >
@ -2062,7 +2067,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
< div class = "page-wrapper" >
< div class = "dark-box" > < / div >
< div class = "content" >
< h1 id = "wekan-rest-api" > Wekan REST API v7.38 < / h1 >
< h1 id = "wekan-rest-api" > Wekan REST API v7.39 < / h1 >
< blockquote >
< p > Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.< / p >
< / blockquote >
@ -4207,6 +4212,241 @@ for detailed explanations</p>
To perform this operation, you must be authenticated by means of one of the following methods:
UserSecurity
< / aside >
< h2 id = "copy_board" > copy_board< / h2 >
< p > < a id = "opIdcopy_board" > < / a > < / p >
< blockquote >
< p > Code samples< / p >
< / blockquote >
< pre class = "highlight tab tab-shell" > < code > < span class = "hljs-comment" > # You can also use wget< / span >
curl -X POST /api/boards/{board}/copy \
-H < span class = "hljs-string" > ' Content-Type: multipart/form-data' < / span > \
-H < span class = "hljs-string" > ' Accept: application/json' < / span > \
-H < span class = "hljs-string" > ' Authorization: API_KEY' < / span >
< / code > < / pre >
< pre class = "highlight tab tab-http" > < code > < span class = "hljs-keyword" > POST< / span > < span class = "hljs-string" > /api/boards/{board}/copy< / span > < span class = "hljs-meta" > HTTP/1.1< / span >
< span class = "fortran" > Content-< span class = "hljs-keyword" > Type< / span > : multipart/< span class = "hljs-keyword" > form< / span > -< span class = "hljs-keyword" > data< / span >
Accept: application/json
< / span > < / code > < / pre >
< pre class = "highlight tab tab-javascript" > < code > < span class = "hljs-keyword" > const< / span > inputBody = < span class = "hljs-string" > ' {
" title" : " string"
}' < / span > ;
< span class = "hljs-keyword" > const< / span > headers = {
< span class = "hljs-string" > ' Content-Type' < / span > :< span class = "hljs-string" > ' multipart/form-data' < / span > ,
< span class = "hljs-string" > ' Accept' < / span > :< span class = "hljs-string" > ' application/json' < / span > ,
< span class = "hljs-string" > ' Authorization' < / span > :< span class = "hljs-string" > ' API_KEY' < / span >
};
fetch(< span class = "hljs-string" > ' /api/boards/{board}/copy' < / span > ,
{
< span class = "hljs-attr" > method< / span > : < span class = "hljs-string" > ' POST' < / span > ,
< span class = "hljs-attr" > body< / span > : inputBody,
< span class = "hljs-attr" > headers< / span > : headers
})
.then(< span class = "hljs-function" > < span class = "hljs-keyword" > function< / span > (< span class = "hljs-params" > res< / span > ) < / span > {
< span class = "hljs-keyword" > return< / span > res.json();
}).then(< span class = "hljs-function" > < span class = "hljs-keyword" > function< / span > (< span class = "hljs-params" > body< / span > ) < / span > {
< span class = "hljs-built_in" > console< / span > .log(body);
});
< / code > < / pre >
< pre class = "highlight tab tab-javascript--nodejs" > < code > < span class = "hljs-keyword" > const< / span > fetch = < span class = "hljs-built_in" > require< / span > (< span class = "hljs-string" > ' node-fetch' < / span > );
< span class = "hljs-keyword" > const< / span > inputBody = {
< span class = "hljs-string" > " title" < / span > : < span class = "hljs-string" > " string" < / span >
};
< span class = "hljs-keyword" > const< / span > headers = {
< span class = "hljs-string" > ' Content-Type' < / span > :< span class = "hljs-string" > ' multipart/form-data' < / span > ,
< span class = "hljs-string" > ' Accept' < / span > :< span class = "hljs-string" > ' application/json' < / span > ,
< span class = "hljs-string" > ' Authorization' < / span > :< span class = "hljs-string" > ' API_KEY' < / span >
};
fetch(< span class = "hljs-string" > ' /api/boards/{board}/copy' < / span > ,
{
< span class = "hljs-attr" > method< / span > : < span class = "hljs-string" > ' POST' < / span > ,
< span class = "hljs-attr" > body< / span > : < span class = "hljs-built_in" > JSON< / span > .stringify(inputBody),
< span class = "hljs-attr" > headers< / span > : headers
})
.then(< span class = "hljs-function" > < span class = "hljs-keyword" > function< / span > (< span class = "hljs-params" > res< / span > ) < / span > {
< span class = "hljs-keyword" > return< / span > res.json();
}).then(< span class = "hljs-function" > < span class = "hljs-keyword" > function< / span > (< span class = "hljs-params" > body< / span > ) < / span > {
< span class = "hljs-built_in" > console< / span > .log(body);
});
< / code > < / pre >
< pre class = "highlight tab tab-ruby" > < code > < span class = "hljs-keyword" > require< / span > < span class = "hljs-string" > ' rest-client' < / span >
< span class = "hljs-keyword" > require< / span > < span class = "hljs-string" > ' json' < / span >
headers = {
< span class = "hljs-string" > ' Content-Type' < / span > => < span class = "hljs-string" > ' multipart/form-data' < / span > ,
< span class = "hljs-string" > ' Accept' < / span > => < span class = "hljs-string" > ' application/json' < / span > ,
< span class = "hljs-string" > ' Authorization' < / span > => < span class = "hljs-string" > ' API_KEY' < / span >
}
result = RestClient.post < span class = "hljs-string" > ' /api/boards/{board}/copy' < / span > ,
< span class = "hljs-symbol" > params:< / span > {
}, < span class = "hljs-symbol" > headers:< / span > headers
p JSON.parse(result)
< / code > < / pre >
< pre class = "highlight tab tab-python" > < code > < span class = "hljs-keyword" > import< / span > requests
headers = {
< span class = "hljs-string" > ' Content-Type' < / span > : < span class = "hljs-string" > ' multipart/form-data' < / span > ,
< span class = "hljs-string" > ' Accept' < / span > : < span class = "hljs-string" > ' application/json' < / span > ,
< span class = "hljs-string" > ' Authorization' < / span > : < span class = "hljs-string" > ' API_KEY' < / span >
}
r = requests.post(< span class = "hljs-string" > ' /api/boards/{board}/copy' < / span > , headers = headers)
< span class = "hljs-built_in" > print< / span > (r.json())
< / code > < / pre >
< pre class = "highlight tab tab-java" > < code > URL obj = < span class = "hljs-keyword" > new< / span > URL(< span class = "hljs-string" > " /api/boards/{board}/copy" < / span > );
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod(< span class = "hljs-string" > " POST" < / span > );
< span class = "hljs-keyword" > int< / span > responseCode = con.getResponseCode();
BufferedReader in = < span class = "hljs-keyword" > new< / span > BufferedReader(
< span class = "hljs-keyword" > new< / span > InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = < span class = "hljs-keyword" > new< / span > StringBuffer();
< span class = "hljs-keyword" > while< / span > ((inputLine = in.readLine()) != < span class = "hljs-keyword" > null< / span > ) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
< / code > < / pre >
< pre class = "highlight tab tab-go" > < code > < span class = "hljs-keyword" > package< / span > main
< span class = "hljs-keyword" > import< / span > (
< span class = "hljs-string" > " bytes" < / span >
< span class = "hljs-string" > " net/http" < / span >
)
< span class = "hljs-function" > < span class = "hljs-keyword" > func< / span > < span class = "hljs-title" > main< / span > < span class = "hljs-params" > ()< / span > < / span > {
headers := < span class = "hljs-keyword" > map< / span > [< span class = "hljs-keyword" > string< / span > ][]< span class = "hljs-keyword" > string< / span > {
< span class = "hljs-string" > " Content-Type" < / span > : []< span class = "hljs-keyword" > string< / span > {< span class = "hljs-string" > " multipart/form-data" < / span > },
< span class = "hljs-string" > " Accept" < / span > : []< span class = "hljs-keyword" > string< / span > {< span class = "hljs-string" > " application/json" < / span > },
< span class = "hljs-string" > " Authorization" < / span > : []< span class = "hljs-keyword" > string< / span > {< span class = "hljs-string" > " API_KEY" < / span > },
}
data := bytes.NewBuffer([]< span class = "hljs-keyword" > byte< / span > {jsonReq})
req, err := http.NewRequest(< span class = "hljs-string" > " POST" < / span > , < span class = "hljs-string" > " /api/boards/{board}/copy" < / span > , data)
req.Header = headers
client := & http.Client{}
resp, err := client.Do(req)
< span class = "hljs-comment" > // ...< / span >
}
< / code > < / pre >
< pre class = "highlight tab tab-php" > < code > < span class = "hljs-string" > ' multipart/form-data' < / span > ,
< span class = "hljs-string" > ' Accept' < / span > => < span class = "hljs-string" > ' application/json' < / span > ,
< span class = "hljs-string" > ' Authorization' < / span > => < span class = "hljs-string" > ' API_KEY' < / span > ,
);
< span class = "hljs-variable" > $client< / span > = < span class = "hljs-keyword" > new< / span > \GuzzleHttp\Client();
< span class = "hljs-comment" > // Define array of request body.< / span >
< span class = "hljs-variable" > $request_body< / span > = < span class = "hljs-keyword" > array< / span > ();
< span class = "hljs-keyword" > try< / span > {
< span class = "hljs-variable" > $response< / span > = < span class = "hljs-variable" > $client< / span > -> request(< span class = "hljs-string" > ' POST' < / span > ,< span class = "hljs-string" > ' /api/boards/{board}/copy' < / span > , < span class = "hljs-keyword" > array< / span > (
< span class = "hljs-string" > ' headers' < / span > => < span class = "hljs-variable" > $headers< / span > ,
< span class = "hljs-string" > ' json' < / span > => < span class = "hljs-variable" > $request_body< / span > ,
)
);
print_r(< span class = "hljs-variable" > $response< / span > -> getBody()-> getContents());
}
< span class = "hljs-keyword" > catch< / span > (\GuzzleHttp\< span class = "hljs-built_in" > Exception< / span > \BadResponseException < span class = "hljs-variable" > $e< / span > ) {
< span class = "hljs-comment" > // handle exception or api errors.< / span >
print_r(< span class = "hljs-variable" > $e< / span > -> getMessage());
}
< span class = "hljs-comment" > // ...< / span >
< / code > < / pre >
< p > < code > POST /api/boards/{board}/copy< / code > < / p >
< p > < em > Copy a board to a new one< / em > < / p >
< p > If your are board admin or wekan admin, this copies the
given board to a new one.< / p >
< blockquote >
< p > Body parameter< / p >
< / blockquote >
< pre class = "highlight tab tab-yaml" > < code > < span class = "hljs-attr" > title:< / span > < span class = "hljs-string" > string< / span >
< / code > < / pre >
< h3 id = "copy_board-parameters" > Parameters< / h3 >
< table >
< thead >
< tr >
< th > Name< / th >
< th > In< / th >
< th > Type< / th >
< th > Required< / th >
< th > Description< / th >
< / tr >
< / thead >
< tbody >
< tr >
< td > board< / td >
< td > path< / td >
< td > string< / td >
< td > true< / td >
< td > the board< / td >
< / tr >
< tr >
< td > body< / td >
< td > body< / td >
< td > object< / td >
< td > true< / td >
< td > none< / td >
< / tr >
< tr >
< td > » title< / td >
< td > body< / td >
< td > string< / td >
< td > true< / td >
< td > the title of the new board (default to old one)< / td >
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-6" > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board< / p >
< blockquote >
< p > Example responses< / p >
< / blockquote >
< blockquote >
< p > 200 Response< / p >
< / blockquote >
< pre class = "highlight tab tab-json" > < code > < span class = "hljs-string" > " string" < / span >
< / code > < / pre >
< h3 id = "copy_board-responses" > Responses< / h3 >
< table >
< thead >
< tr >
< th > Status< / th >
< th > Meaning< / th >
< th > Description< / th >
< th > Schema< / th >
< / tr >
< / thead >
< tbody >
< tr >
< td > 200< / td >
< td > < a href = "https://tools.ietf.org/html/rfc7231#section-6.3.1" > OK< / a > < / td >
< td > 200 response< / td >
< td > string< / td >
< / tr >
< / tbody >
< / table >
< aside class = "warning" >
To perform this operation, you must be authenticated by means of one of the following methods:
UserSecurity
< / aside >
< h2 id = "add_board_label" > add_board_label< / h2 >
< p > < a id = "opIdadd_board_label" > < / a > < / p >
< blockquote >
@ -4409,7 +4649,7 @@ adds the label to the board.</p>
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-6 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-7 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board< / p >
< blockquote >
< p > Example responses< / p >
@ -4671,7 +4911,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-7 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-8 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the ID of the board that we are changing< / p >
< p > < strong > member< / strong > : the ID of the user to change permissions< / p >
< h3 id = "set_board_member_permission-responses" > Responses< / h3 >
@ -4889,7 +5129,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-8 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-9 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the ID of the board to update< / p >
< h3 id = "update_board_title-responses" > Responses< / h3 >
< table >
@ -5292,7 +5532,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-9 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-10 " > Detailed descriptions< / h4 >
< p > < strong > user< / strong > : the ID of the user to retrieve the data< / p >
< blockquote >
< p > Example responses< / p >
@ -5535,7 +5775,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-10 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-11 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > card< / strong > : the card ID< / p >
< blockquote >
@ -5820,7 +6060,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-11 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-12 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > card< / strong > : the card ID< / p >
< blockquote >
@ -6060,7 +6300,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-12 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-13 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > card< / strong > : the card ID< / p >
< p > < strong > checklist< / strong > : the ID of the checklist< / p >
@ -6369,7 +6609,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-13 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-14 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > card< / strong > : the card ID< / p >
< p > < strong > checklist< / strong > : the ID of the checklist to remove< / p >
@ -6643,7 +6883,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-14 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-15 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > card< / strong > : the card ID< / p >
< p > < strong > checklist< / strong > : the ID of the checklist< / p >
@ -6891,7 +7131,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-15 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-16 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > card< / strong > : the card ID< / p >
< p > < strong > checklist< / strong > : the checklist ID< / p >
@ -7166,7 +7406,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-16 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-17 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > card< / strong > : the card ID< / p >
< p > < strong > checklist< / strong > : the checklist ID< / p >
@ -7416,7 +7656,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-17 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-18 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > card< / strong > : the card ID< / p >
< p > < strong > checklist< / strong > : the checklist ID< / p >
@ -7652,7 +7892,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-18 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-19 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID of the card< / p >
< p > < strong > card< / strong > : the ID of the card< / p >
< blockquote >
@ -7945,7 +8185,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-19 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-20 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID of the card< / p >
< p > < strong > card< / strong > : the ID of the card< / p >
< blockquote >
@ -8185,7 +8425,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-20 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-21 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID of the card< / p >
< p > < strong > card< / strong > : the ID of the card< / p >
< p > < strong > comment< / strong > : the ID of the comment to retrieve< / p >
@ -8409,7 +8649,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-21 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-22 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID of the card< / p >
< p > < strong > card< / strong > : the ID of the card< / p >
< p > < strong > comment< / strong > : the ID of the comment to delete< / p >
@ -8651,7 +8891,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-22 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-23 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > customField< / strong > : the list ID< / p >
< p > < strong > customFieldValue< / strong > : the value to look for< / p >
@ -8912,7 +9152,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-23 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-24 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< blockquote >
< p > Example responses< / p >
@ -9144,7 +9384,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-24 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-25 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > list< / strong > : the list ID< / p >
< blockquote >
@ -9477,7 +9717,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-25 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-26 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID of the new card< / p >
< p > < strong > list< / strong > : the list ID of the new card< / p >
< blockquote >
@ -9717,7 +9957,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-26 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-27 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > list< / strong > : the list ID of the card< / p >
< p > < strong > card< / strong > : the card ID< / p >
@ -10321,7 +10561,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-27 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-28 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID of the card< / p >
< p > < strong > list< / strong > : the list ID of the card< / p >
< p > < strong > card< / strong > : the ID of the card< / p >
@ -10564,7 +10804,7 @@ is not put in the recycle bin.</p>
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-28 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-29 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID of the card< / p >
< p > < strong > list< / strong > : the list ID of the card< / p >
< p > < strong > card< / strong > : the ID of the card< / p >
@ -10845,7 +11085,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-29 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-30 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID of the card< / p >
< p > < strong > list< / strong > : the list ID of the card< / p >
< p > < strong > card< / strong > : the ID of the card< / p >
@ -11088,7 +11328,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-30 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-31 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > list< / strong > : the List ID< / p >
< blockquote >
@ -11321,7 +11561,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-31 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-32 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > swimlane< / strong > : the swimlane ID< / p >
< blockquote >
@ -12147,7 +12387,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-32 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-33 " > Detailed descriptions< / h4 >
< p > < strong > customField< / strong > : the ID of the custom field< / p >
< blockquote >
< p > Example responses< / p >
@ -12722,7 +12962,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-33 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-34 " > Detailed descriptions< / h4 >
< p > < strong > customField< / strong > : the ID of the custom field< / p >
< blockquote >
< p > Example responses< / p >
@ -13716,7 +13956,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-34 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-35 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< blockquote >
< p > Example responses< / p >
@ -14056,7 +14296,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-35 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-36 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< blockquote >
< p > Example responses< / p >
@ -14288,7 +14528,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-36 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-37 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > int< / strong > : the integration ID< / p >
< blockquote >
@ -14582,7 +14822,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-37 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-38 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > int< / strong > : the integration ID< / p >
< blockquote >
@ -14815,7 +15055,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-38 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-39 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > int< / strong > : the integration ID< / p >
< blockquote >
@ -15048,7 +15288,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-39 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-40 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > int< / strong > : the integration ID< / p >
< blockquote >
@ -15302,7 +15542,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-40 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-41 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > int< / strong > : the integration ID< / p >
< blockquote >
@ -15518,7 +15758,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-41 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-42 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< blockquote >
< p > Example responses< / p >
@ -15785,7 +16025,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-42 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-43 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< blockquote >
< p > Example responses< / p >
@ -16017,7 +16257,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-43 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-44 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > list< / strong > : the List ID< / p >
< blockquote >
@ -16246,7 +16486,7 @@ The list is not put in the recycle bin.</p>
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-44 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-45 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the board ID< / p >
< p > < strong > list< / strong > : the ID of the list to remove< / p >
< blockquote >
@ -16473,7 +16713,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-45 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-46 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the ID of the board< / p >
< blockquote >
< p > Example responses< / p >
@ -16740,7 +16980,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-46 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-47 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the ID of the board< / p >
< blockquote >
< p > Example responses< / p >
@ -16972,7 +17212,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-47 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-48 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the ID of the board< / p >
< p > < strong > swimlane< / strong > : the ID of the swimlane< / p >
< blockquote >
@ -17224,7 +17464,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-48 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-49 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the ID of the board< / p >
< p > < strong > swimlane< / strong > : the ID of the swimlane to edit< / p >
< blockquote >
@ -17458,7 +17698,7 @@ System.out.println(response.toString());
< / tr >
< / tbody >
< / table >
< h4 id = "detailed-descriptions-49 " > Detailed descriptions< / h4 >
< h4 id = "detailed-descriptions-50 " > Detailed descriptions< / h4 >
< p > < strong > board< / strong > : the ID of the board< / p >
< p > < strong > swimlane< / strong > : the ID of the swimlane< / p >
< blockquote >