gns3-server/docs/api/v2/controller/drawing/projectsprojectiddrawings.rst
grossmj 0f496907a0 Fix API status code for start/stop/suspend/reload a node. Fixes #1353.
Fix issues with test.
Update documentation.
2018-06-14 16:39:32 +08:00

3.8 KiB

/v2/projects/{project_id}/drawings

GET /v2/projects/{project_id}/drawings

List drawings of a project

Parameters

  • project_id: Project UUID

Response status codes

  • 200: List of drawings returned

Sample session

../../../examples/controller_get_projectsprojectiddrawings.txt

POST /v2/projects/{project_id}/drawings

Create a new drawing instance

Parameters

  • project_id: Project UUID

Response status codes

  • 400: Invalid request
  • 201: Drawing created

Input

Name Mandatory Type Description
drawing_id string Drawing UUID
project_id string Project UUID
rotation integer Rotation of the element
svg string SVG content of the drawing
x integer X property
y integer Y property
z integer Z property

Output

Name Mandatory Type Description
drawing_id string Drawing UUID
project_id string Project UUID
rotation integer Rotation of the element
svg string SVG content of the drawing
x integer X property
y integer Y property
z integer Z property

Sample session

../../../examples/controller_post_projectsprojectiddrawings.txt