# Projects

# GET

GET /{organizationNickname}/projects

Get a list of all projects you have access to within the organization scope.

Header Parameters

Name Description
Authorization String Civillo API Credentials
*required

Sample output

[
    {
        "id": 1,
        "name": "Default Project"
    },
    {
        "id": 2,
        "name": "Second Project"
    },
    {
        "id": 3,
        "name": "Another Project"
    }
]



GET /{organizationNickname}/projects/{projectId}

Get a specific project

Header Parameters

Name Description
Authorization String Civillo API Credentials
*required

Sample output

{
    "id": 1,
    "name": "Default Project"
}
Last Updated: 04/08/2023