v1

latestOpenAPI 3.0.02026-08-066924329.8 KB
Services

Create a new service

Create a new service

post/services

Request body

namestring required
infostring nullable
colorstring nullable
activeboolean nullable
billableboolean nullable
acronymstring nullable
ext_tool_idstring nullable
default_time_entry_descriptionstring nullable

Example request

{
  "name": "Software development",
  "info": "Software Development services.",
  "color": "#000000",
  "active": true,
  "billable": true,
  "acronym": "Dev",
  "ext_tool_id": "2424",
  "default_time_entry_description": "Maintenance done which was planed on date yyyy/mm/dd."
}

Response

Service created

successboolean

Example response

{
  "data": {
    "id": "<ULID>",
    "name": "Software development",
    "ext_tool_id": 24,
    "info": "Software Development services",
    "color": "#000000",
    "active": true,
    "billable": true,
    "acronym": "Dev",
    "image_id": "<ULID>",
    "default_time_entry_description": "Maintenance done which was planed on date yyyy/mm/dd."
  }
}