Get all project templates
GET {{baseUrl}}/projectTemplates?cursor=<string>&limit=<integer>
Returns all not deleted project templates. This is a cursor-paginated endpoint. For more information, please refer to our documentation on pagination.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
cursor | string | For pagination, the marker (an opaque string value) representing the first item on the next page | |
limit | string | For pagination, the limit of entries to be returned. If not provided, up to 500 items will be returned. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"success":true,"data":[{"id":1,"title":"Template Title","description":"Template Description","projects_board_id":2,"owner_id":3,"add_time":"2023-09-14 08:14:40.288","update_time":"2023-09-14 08:14:40.288"}],"additional_data":{"next_cursor":"eyJhY3Rpdml0aWVzIjoyN30"}}