Get an Overview of Project Status

[ez-toc]

Retrieve Project Status List

This API endpoint provides you with a list of all possible statuses for your project, including “In Progress”, “Completed”, and “Archived”. With this information, you can get a clear understanding of the current state of your project and make informed decisions to keep your workflow running smoothly.

Endpoint

https://api.gitscrum.com/projects/statuses/?project_key=KEY&api_id=ID

Method

GET

Query Parameters

None

Authentication

API ID and Project KEY are required for authentication.

Example Response

{
    "data": [
        {
            "id": 0,
            "label": "In Progress"
        },
        {
            "id": 1,
            "label": "Completed"
        },
        {
            "id": 2,
            "label": "Archived"
        }
    ]
}

Note

Ensure that you securely store and protect your API ID and Project KEY, as they are required for authentication.