mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-12-27 00:11:07 +00:00
3.4 KiB
3.4 KiB
/v2/projects/{project_id}/shapes
GET /v2/projects/{project_id}/shapes
List shapes of a project
Parameters
- project_id: Project UUID
Response status codes
- 200: List of shapes returned
Sample session
../../../examples/controller_get_projectsprojectidshapes.txt
POST /v2/projects/{project_id}/shapes
Create a new shape instance
Parameters
- project_id: Project UUID
Response status codes
- 400: Invalid request
- 201: Shape created
Input
Name | Mandatory | Type | Description |
---|---|---|---|
project_id | string | Project UUID | |
shape_id | string | Shape UUID | |
svg | string | SVG content of the shape | |
x | integer | X property | |
y | integer | Y property | |
z | integer | Z property |
Output
Name | Mandatory | Type | Description |
---|---|---|---|
project_id | string | Project UUID | |
shape_id | string | Shape UUID | |
svg | string | SVG content of the shape | |
x | integer | X property | |
y | integer | Y property | |
z | integer | Z property |
Sample session
../../../examples/controller_post_projectsprojectidshapes.txt