Archive Project

Hi all,

How can I archive a project using API?

Many thanks in advanced,

To archive a project you should be using stable v1 API:

PUT /workspaces/{workspaceId}/projects/{projectId}/

With at least this information in the body of your request, making sure to set archived as true:

{
    "name": "",
    "color": "",
    "archived": true
}

It works!!

Thank you very much!!

1 Like