Get Templates

GET /api/v1.0/templates

This endpoint fetch the list of all project templates.

Query parameters

  • type string Required

    Template Type

    Values are document, task, milestone, or project.

  • limit string

    No of records to fetch

  • offset string

    Record Offset

Responses

  • 200 application/json

    Success Response

    Hide response attributes Show response attributes object
    • ID string Required
    • Name string Required
    • Description string Required
    • Template Type string Required
    • Public Token string Required
    • Created Date string(date-time) Required
    • Updated Date string(date-time) Required
    • Created by Team member Id string Required
  • 401

    The client request has not been completed because it lacks valid authentication credentials for the requested resource.

  • 403

    The client does not have access rights to the content.

  • 405

    The request method is known by the server but is not supported by the target resource.

GET /api/v1.0/templates
curl \
 --request GET 'https://openapi.niftypm.com/api/v1.0/templates?type=document' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "ID": "string",
  "Name": "string",
  "Description": "string",
  "Template Type": "string",
  "Public Token": "string",
  "Created Date": "2025-05-04T09:42:00Z",
  "Updated Date": "2025-05-04T09:42:00Z",
  "Created by Team member Id": "string"
}