v1

latestOpenAPI 3.1.1LicenseRef-Proprietary2026-07-1310179223.1 KB
Projects

Get All Projects

List projects the caller has access to. Use the query parameter to search by name and limit/page for pagination — see Pagination.

get/projects

Query parameters

platform'as' | 'ev' | 'b3' | 'b2' | 'pv' | 'gh' | 'in' | 'tr' | 'jr'
Example:as

Filter by Integration

querystring
Example:Development

Search Projects by Name

limitinteger
Example:100

Max Results

pageinteger
Example:1

Results page (1-based)

Response

OK

idstring required
namestring required
workspaceIdstring nullable
workspaceNamestring nullable
clientnumber nullable

Client ID

type'board' | 'list'

Project Type

favoriteboolean
usersnumber[] required

List of assigned user IDs

Example response

[
  {
    "id": "as:1234567890",
    "name": "Project Name",
    "type": "board",
    "users": [
      1304,
      1543
    ],
    "rate": {
      "userRateOverrides": {
        "1304": 10000,
        "1543": 5000
      }
    },
    "budget": {
      "type": "money",
      "budget": 100000,
      "period": "general"
    }
  }
]