latestOpenAPI 3.0.32026-08-20147323331.7 KB
a7231589e927
projects
Search for projects by a given filter
Filterable fields and their allowed operators:
| Field | Allowed operators |
|---|---|
| account_id | equals, in, not_in, is_set |
| status | equals, in, not_in |
| owner_id | equals, in, not_in, is_set, is_unset |
| is_archived | equals |
| created_at | time_is_after, time_is_before, time_range |
| updated_at | time_is_after, time_is_before, time_range |
Timestamp values use RFC3339 format. Valid status values are not_started, in_progress, and completed. For custom fields, pass the field slug as field.
Rate limit: 20 requests per minute
post/projects/search
Request body
Example request
{
"filter": {
"subfilters": [
{
"field": "state",
"operator": "equals",
"value": "new"
}
]
}
}Response
Example response
{
"data": [
{
"custom_fields": {
"health": {
"value": "on_track"
}
}
}
]
}