Projects
List Projects
List projects from an organization. Only returns a subset of a Project fields.
Search
The search query parameter takes a list of words and enables you to only return projects whose code or name (or those of their clients) contains all those words.
GET /api/v4/projects?organizationId=1&search=pro,avat&fields.root=count HTP/1.1
{
"count": 2,
"items": [
{
"id": 1,
"name": "Project",
"code": "Avatar",
"client": {
"name": "James Cameron",
"code": "CAMERON"
}
},
{
"id": 2,
"name": "Avatar Project",
"code": "Awesomeness",
"client": {
"name": "Advent",
"code": "ADVENT"
}
],
{
"id": 3,
"name": "Test",
"code": "Test",
"client": {
"name": "Avatar",
"code": "project"
}
}
}
GET
/
timmi-project
/
api
/
v4
/
projects
Query Parameters
organizationId
integer
requiredFilter on a single organization unique identifier.
search
string[]
Comma-separated list of codes / names to search for
limit
integer
default: 10Page size
page
integer
default: 1Page number
Required range:
x > 1
fields.root
enum<string>
Return total items count (across all pages).
Available options:
count
code
string
Only returns projects whose code is strictly equal to sent value
Response
200 - application/json
next
string | null
prev
string | null
count
integer | null
Required range:
x > 0
items
object[]
Was this page helpful?