Skip to content

Project Template Additional Tabs

Project Template Additional Tabs are additional tabs configured in a project template that are added to a project when the template is applied.

Fetching a list of Project Template Additional Tabs

Request

This endpoint returns structured Project Template Additional Tab objects. As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array and will be indexed by ID in the project_template_additional_tabs top-level JSON key. Please see our Response Format section for more information.

Query
onlystring

Allows you to request one or more resources directly by ID. Multiple IDs can be supplied in a comma separated list, like GET /api/v1/workspaces.json?only=5,6,7.

orderstring

Supply order with the name of a valid sort field for the endpoint and a direction.

Valid values: updated_at:asc and updated_at:desc.

Default:"updated_at:desc"
pageinteger, (int32)
Default:1
per_pageinteger, (int32), <= 200
Default:20
project_template_idinteger, (int32)

Filter by project template ID.

curl -i -X GET \
  'https://api.mavenlink.com/api/v1/project_template_additional_tabs?only=string&order=updated_at%3Adesc&page=1&per_page=20&project_template_id=0'

Responses

A list of Project Template Additional Tabs have been retrieved.

Bodyapplication/json
countinteger, (int32)
metaobject
resultsArray of objects
project_template_additional_tabsobject
Response
{ "count": 0, "meta": { "count": 0, "page_count": 0, "page_number": 0, "page_size": 0 }, "results": [ { "key": "string", "id": "string" } ], "project_template_additional_tabs": { "property1": { "associated_tab_id": 0, "project_template_id": 0, "tab_type": "string" }, "property2": { "associated_tab_id": 0, "project_template_id": 0, "tab_type": "string" } } }