v1

latestOpenAPI 3.0.02026-08-066924329.8 KB
Projects

Update Project

Update the project with the given ext-id.

patch/projects/ext/{ext-id}

Path parameters

ext-idstring required

Request body

namestring
ext_tool_idstring nullable
client_idstring
ext_client_idstring nullable
infostring nullable
colorstring nullable
activeboolean nullable
billableboolean nullable
acronymstring nullable
demo_flagboolean nullable

Example request

{
  "name": "Next Big Software",
  "ext_tool_id": "24",
  "client_id": "<ULID>",
  "ext_client_id": "123",
  "color": "#000000",
  "active": true,
  "acronym": "NBG"
}

Response

Project updated successfully

successboolean

Example response

{
  "data": {
    "id": "<ULID>",
    "name": "Next Big Software",
    "ext_tool_id": 24,
    "info": "The next big software idea will be awesome.",
    "color": "#000000",
    "active": true,
    "acronym": "NBG",
    "image_id": "<ULID>",
    "demo_flag": true
  }
}