v3

latestOpenAPI 3.1.02026-07-31144319609.5 KB
Project

put/v4/projects/{id}

Path parameters

idinteger required
Example:1

Request body

namestring
customers_idinteger
activeboolean
numberstring nullable

Freely selectable number for the project

billable_defaultboolean
notestring nullable
deadlinestring date nullable

Date when the project will be completed automatically

start_datestring date nullable

Date when the project becomes available for time tracking

automatic_completionboolean
service_assignmentsinteger[]
bill_service_idstring nullable

Example request

{
  "deadline": "2023-02-28",
  "start_date": "2023-02-28"
}

Response

Successful operation

Example response

{
  "data": {
    "id": 10,
    "name": "Publicity campaign",
    "note": "This project is important for us",
    "completed_at": "2023-02-28T12:00:00Z",
    "deadline": "2023-02-28",
    "start_date": "2023-01-01",
    "count_subprojects": 5,
    "bill_service_id": "1234",
    "service_assignments": [
      10
    ]
  }
}