diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-06-25 14:34:46 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-06-25 14:34:46 -0400 |
commit | 922e0fb6de06a98774418612e0b0f75af72b6dbb (patch) | |
tree | dff0b7c2c8cd0515b22c8f320cdcf58c47515a98 /doc/api-project-procedures.markdown | |
parent | fc93203e4db044d37c1686fef0efb1ac1d6ac4b8 (diff) |
Rewrite integration tests to run with Docker containers
Diffstat (limited to 'doc/api-project-procedures.markdown')
-rw-r--r-- | doc/api-project-procedures.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api-project-procedures.markdown b/doc/api-project-procedures.markdown index 6cc1b15b..f8e2cc5e 100644 --- a/doc/api-project-procedures.markdown +++ b/doc/api-project-procedures.markdown @@ -183,7 +183,7 @@ Response example: - Purpose: **Update a project** - Parameters: - - **id** (integer, required) + - **project_id** (integer, required) - **name** (string, required) - **description** (string, optional) - Result on success: **true** @@ -197,7 +197,7 @@ Request example: "method": "updateProject", "id": 1853996288, "params": { - "id": 1, + "project_id": 1, "name": "PHP client update" } } |