Get project list
GET
/tm/projectsRequest
Responses
Successful response(200)
Successful response
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
success
boolean
optional
projects
array[object (Project) {8}]
optional
id
integer
optional
title
string
optional
>= 1 characters
logoLink
string | null
optional
description
string | null
optional
color
string
optional
>= 1 characters
isPrivate
boolean
optional
team
array[string]
optional
customFields
array[object (CustomField) {5}]
optional
Example
{
"success": true,
"projects": [
{
"id": 0,
"title": "string",
"logoLink": "string",
"description": "string",
"color": "string",
"isPrivate": true,
"team": [
"string"
],
"customFields": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"type": "text",
"config": {
"type": "switch"
},
"options": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"color": "blue"
}
]
}
]
}
]
}
Last modified: a year ago