Apologies if this is not the correct repo for API issues.
We have been using the API for a few years and noticed in the last month or so that new projects are being created as private and updated as private. The settings on the workspace are that new projects should be created as public. We use this code in our application that syncs between the tools we use and creates/updates projects in clockify where we use the isPublic parameter:
let project = {
name: projectName,
clientId: clientId,
isPublic: true,
billable: true,
public: true
}
const newProject = await axios.post(`/projects`, project, clockifyConfig)
Thank you
Apologies if this is not the correct repo for API issues.
We have been using the API for a few years and noticed in the last month or so that new projects are being created as private and updated as private. The settings on the workspace are that new projects should be created as public. We use this code in our application that syncs between the tools we use and creates/updates projects in clockify where we use the
isPublicparameter:Thank you