Skip to main content
GET
/
projects
/
{project_id}
/
fields
Get Project Fields Configuration
curl --request GET \
  --url https://api.everhour.com/projects/{project_id}/fields \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 406,
    "name": "field name",
    "type": "date",
    "format": {
      "decimals": 2,
      "label": "US$"
    },
    "options": [
      {
        "id": 806,
        "name": "option value",
        "color": "#FC5500"
      }
    ],
    "position": 1
  }
]

Authorizations

X-Api-Key
string
header
required

Path Parameters

project_id
string
required

Project ID

Example:

"ev:3000010034"

Response

OK

id
number

Custom field ID

Example:

406

name
string
Example:

"field name"

type
string
Example:

"date"

format
object
options
object[]
position
number
Example:

1