Create a placeholder
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.
{
"data": {
"type": "placeholders",
"attributes": {
"name": "Project Manager",
"category": "project",
"type": "person",
"color": "electric",
"icon": "icon-cowboy-hat-filled",
"project_id": 7388870
}
}
}
{
"data": {
"type": "placeholders",
"attributes": {
"name": "Kickoff date",
"category": "project",
"type": "date",
"color": "canary",
"icon": "icon-calendar",
"project_id": 7388870
}
}
}