v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Projects|Project category

Create/Update project categories.

This method can be used to create and update project categories.

An effort is made to locate an existing project category using the selected primary key. If found, it will be modified, whereas if no project category is found, a new one is created. If the deleteMissing flag is set to true, all project categories absent from the request shall be purged. Please note that removed project categories may not be reinstated. You can enable the dryRun setting to simulate the action without altering any live data.

post/project_category/upsert

Request body

deleteMissingboolean

Do you want to delete all project categories missing from this request? This Parameter is optional. (Default: false)

dryRunboolean

Simulate the operation. (No records will be created or changed) This Parameter is optional.

Response

Success Response:

Example response

{
  "createdProjectCategories": [
    {
      "createdAt": "2015-02-20T12:59:21+01:00"
    }
  ],
  "updatedProjectCategories": [
    {
      "createdAt": "2015-02-20T12:59:21+01:00"
    }
  ],
  "deletedProjectCategories": [
    {
      "createdAt": "2015-02-20T12:59:21+01:00"
    }
  ]
}