Skip to main content
Skip table of contents

Projects

GET /v3/projects

Get projects of current user.

Name

Type

Description

start

integer

limit

integer

query

string

A query for searching in either the name or code fields. If both fields are provided in the query, the same string must be used. Accepted operators are contains (=~) and starts with (=^) and they cannot be mixed. For example, searching for projects that contain the string 'abc' in their name or code: name=~'abc' or code=~'abc'

CODE
Headers:
Content-Type: application/json
Authentication: Bearer %access_token%

Authentication:
Grant_type: client_credentials, login_info
Scopes: []

Response body:
{
  "projects": [
    {
      "id": 0,
      "active": true,
      "code": "string",
      "name": "string",
      "description": "string",
      "favorite": true
    }
  ],
  "count": 0
}

PATCH /v3/projects

Update a list of projects.

CODE
Headers:
Content-Type: application/json
Authentication: Bearer %access_token%

Authentication:
Grant_type: client_credentials, login_info
Scopes: []

Response body:
{
  "projects": [
    {
      "id": 0,
      "active": true,
      "code": "string",
      "name": "string",
      "description": "string",
      "favorite": true
    }
  ],
  "count": 0
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.