Skip to main content
GET
/
v1
/
project_templates
/
{id}
Get a project template
curl --request GET \
  --url https://api.slant.app/v1/project_templates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "template123xyz",
  "title": "New Client Onboarding",
  "project_milestones": [
    {
      "id": "milestone123xyz",
      "title": "Initial Setup",
      "project_template_id": "template123xyz",
      "guid": "milestone-guid",
      "color": "<string>",
      "sort_order": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "project_milestone_outcomes": [
        {
          "id": "outcome123xyz",
          "label": "Ready for accounts",
          "default_comment": "<string>",
          "sort_order": 123,
          "target_project_milestone_id": "<string>"
        }
      ],
      "project_milestone_form_fields": [
        {
          "id": "field123xyz",
          "label": "Custodian",
          "required": true,
          "guid": "field-guid",
          "placeholder": "<string>",
          "sort_order": 123,
          "household_record_source": "<string>",
          "select_options": [
            "<string>"
          ]
        }
      ]
    }
  ],
  "guid": "template-guid",
  "description": "<string>",
  "enable_kanban_view": true,
  "book_id": "<string>",
  "order_index": 123,
  "book_name": "<string>",
  "book_initials": "<string>",
  "attachments": [
    {
      "file_name": "onboarding.pdf",
      "file_type": "application/pdf",
      "file_size": 123456,
      "source": "uploaded",
      "signed_id": "signed-blob-id",
      "download_url": "<string>",
      "view_url": "<string>"
    }
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

OAuth 2.0 Bearer Token from Clerk authentication

Path Parameters

id
string
required

The project template ID

Query Parameters

book_id
string

Filter by book ID

Response

project template retrieved

id
string
required

The project template ID

Example:

"template123xyz"

title
string
required

The template title

Example:

"New Client Onboarding"

project_milestones
object[]
required
guid
string

The project template GUID

Example:

"template-guid"

description
string | null
projectable_kind
enum<string>

The related record kind this template supports

Available options:
household,
contact,
business
enable_kanban_view
boolean
book_id
string | null

The owning book ID, or null for company-wide templates

order_index
integer
book_name
string | null
book_initials
string | null
attachments
object[]
created_at
string<date-time>
updated_at
string<date-time>