Skip to content

Secret Group

Info

For API overview and usages, check out this page

Get List

GET /api/project-manager/projects (requires authentication)

Response

Status: 200 OK
{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": "caf2fce2-2533-4562-b9dd-1d4a6e20d511",
            "name": "Test",
            "description": ""
        },
        {
            "id": "d930327b-8207-46ee-9e67-1c869b78311b",
            "name": "Test",
            "description": ""
        }
    ]
}

Get Object

GET /api/project-manager/projects/:project_id (requires authentication)

Response

Status: 200 OK
{
    "id": "caf2fce2-2533-4562-b9dd-1d4a6e20d511",
    "name": "Test",
    "description": ""
}

Create new data

POST /api/project-manager/projects (requires authentication)

Parameters

Name Description
description Description about project
name Name of the project

Request

{
    "name": "Test",
    "description": ""
}

Response

Status: 201 Created
{
    "id": "8bb3f9d6-cb80-4f2c-9c70-9221a47adb4a",
    "name": "Test",
    "description": ""
}

Partial Update

PATCH /api/project-manager/projects/:project_id (requires authentication)

Parameters

Name Description
description Description about project
name Name of the project

Request

{
    "name": "Test",
    "description": ""
}

Response

Status: 200 OK
{
    "id": "8bb3f9d6-cb80-4f2c-9c70-9221a47adb4a",
    "name": "Test",
    "description": ""
}


Last update: November 28, 2021