Project fields

There is no information about GET /v1/projectFields in the API documentation, but I can make a request there using the API token.
Unfortunately, I can’t make such a request using an OAuth Access Token because my app settings don’t have a scope like “Project Fields: Full access”.
I can’t use API tokens in my app, only OAuth

Why isn’t there such an option? And is it possible to add it if such a route already exists in the API?

1 Like

I am facing the same problem. Someone found a solution ?

Hi! I’m glad to share that the following projects-related API v2 endpoints are now available:

V2 Projects API

GET /api/v2/projects

GET /api/v2/projects/:id

GET /api/v2/projects/archived

POST /api/v2/projects

POST /api/v2/projects/archive

PATCH /api/v2/projects/:id

DELETE /api/v2/projects


V2 Projects Boards and Phases API

GET /api/v2/boards

GET /api/v2/boards/:id

POST /api/v2/boards

PATCH /api/v2/boards/:id

DELETE /api/v2/boards

GET /api/v2/phases

GET /api/v2/phases/:id

POST /api/v2/phases

PATCH /api/v2/phases/:id

DELETE /api/v2/phases


V2 Projects Tasks API

GET /api/v2/tasks

GET /api/v2/tasks/:id

POST /api/v2/tasks

PATCH /api/v2/tasks/:id

DELETE /api/v2/tasks


V2 Projects Templates API

GET /api/v2/projectTemplates

GET /api/v2/projectTemplates/:id


V2 Project Fields API

GET /api/v2/projectFields

GET /api/v2/projectFields/:field_code

POST /api/v2/projectFields

PATCH /api/v2/projectFields/:field_code

DELETE /api/v2/projectFields/:field_code

POST /api/v2/projectFields/:field_code/options

PATCH /api/v2/projectFields/:field_code/options

DELETE /api/v2/projectFields/:field_code/options


Other Projects-Related V2 Endpoints

GET /api/v2/projects/:id/changelog

GET /api/v2/projects/:id/search

POST /api/v2/projects/:id/permittedUsers

All the endpoints are documented in our API reference and a Changelog post will follow soon