/api/v2/placeholders

POST
Projects • Placeholders

Create a placeholder

Description

Creates a placeholder on a template project. Requires name, category, type, color, icon, and project_id — the project must be a template. The type determines what the placeholder resolves to when a project is created from the template: a person or a date.

Create a person placeholder

{
  "data": {
    "type": "placeholders",
    "attributes": {
      "name": "Project Manager",
      "category": "project",
      "type": "person",
      "color": "electric",
      "icon": "icon-cowboy-hat-filled",
      "project_id": 7388870
    }
  }
}

Create a date placeholder

{
  "data": {
    "type": "placeholders",
    "attributes": {
      "name": "Kickoff date",
      "category": "project",
      "type": "date",
      "color": "canary",
      "icon": "icon-calendar",
      "project_id": 7388870
    }
  }
}
Loading parameters…
Loading request bodies…
Loading responses…