1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-16 04:48:59 +00:00
gns3-server/docs/api/v2/controller/shape/projectsprojectidshapes.rst

74 lines
3.8 KiB
ReStructuredText
Raw Normal View History

2016-06-23 09:17:23 +00:00
/v2/projects/{project_id}/drawings
2016-06-21 08:35:43 +00:00
------------------------------------------------------------------------------------------------------------------------------------------
.. contents::
2016-06-23 09:17:23 +00:00
GET /v2/projects/**{project_id}**/drawings
2016-06-21 08:35:43 +00:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2016-06-23 09:17:23 +00:00
List drawings of a project
2016-06-21 08:35:43 +00:00
Parameters
**********
- **project_id**: Project UUID
Response status codes
**********************
2016-06-23 09:17:23 +00:00
- **200**: List of drawings returned
2016-06-21 08:35:43 +00:00
Sample session
***************
2016-06-23 09:17:23 +00:00
.. literalinclude:: ../../../examples/controller_get_projectsprojectiddrawings.txt
2016-06-21 08:35:43 +00:00
2016-06-23 09:17:23 +00:00
POST /v2/projects/**{project_id}**/drawings
2016-06-21 08:35:43 +00:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2016-06-23 09:17:23 +00:00
Create a new drawing instance
2016-06-21 08:35:43 +00:00
Parameters
**********
- **project_id**: Project UUID
Response status codes
**********************
- **400**: Invalid request
2016-06-23 09:17:23 +00:00
- **201**: Drawing created
2016-06-21 08:35:43 +00:00
Input
*******
.. raw:: html
<table>
<tr> <th>Name</th> <th>Mandatory</th> <th>Type</th> <th>Description</th> </tr>
<tr><td>project_id</td> <td> </td> <td>string</td> <td>Project UUID</td> </tr>
2016-06-22 16:14:14 +00:00
<tr><td>rotation</td> <td> </td> <td>integer</td> <td>Rotation of the element</td> </tr>
2016-06-23 09:17:23 +00:00
<tr><td>drawing_id</td> <td> </td> <td>string</td> <td>Drawing UUID</td> </tr>
<tr><td>svg</td> <td> </td> <td>string</td> <td>SVG content of the drawing</td> </tr>
2016-06-21 08:35:43 +00:00
<tr><td>x</td> <td> </td> <td>integer</td> <td>X property</td> </tr>
<tr><td>y</td> <td> </td> <td>integer</td> <td>Y property</td> </tr>
<tr><td>z</td> <td> </td> <td>integer</td> <td>Z property</td> </tr>
</table>
Output
*******
.. raw:: html
<table>
<tr> <th>Name</th> <th>Mandatory</th> <th>Type</th> <th>Description</th> </tr>
<tr><td>project_id</td> <td> </td> <td>string</td> <td>Project UUID</td> </tr>
2016-06-22 16:14:14 +00:00
<tr><td>rotation</td> <td> </td> <td>integer</td> <td>Rotation of the element</td> </tr>
2016-06-23 09:17:23 +00:00
<tr><td>drawing_id</td> <td> </td> <td>string</td> <td>Drawing UUID</td> </tr>
<tr><td>svg</td> <td> </td> <td>string</td> <td>SVG content of the drawing</td> </tr>
2016-06-21 08:35:43 +00:00
<tr><td>x</td> <td> </td> <td>integer</td> <td>X property</td> </tr>
<tr><td>y</td> <td> </td> <td>integer</td> <td>Y property</td> </tr>
<tr><td>z</td> <td> </td> <td>integer</td> <td>Z property</td> </tr>
</table>
Sample session
***************
2016-06-23 09:17:23 +00:00
.. literalinclude:: ../../../examples/controller_post_projectsprojectiddrawings.txt
2016-06-21 08:35:43 +00:00