Get Custom fields
This endpoint provides list of all the custom fields in the project.
Query parameters
-
If
project_id
parameter is not passed it will return team level all the custom fields. -
No of records per page
-
Record Offset
GET
/api/v1.0/fields
curl \
--request GET 'https://openapi.niftypm.com/api/v1.0/fields' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": "string",
"name": "string",
"description": "string",
"type": "string",
"currency": "string",
"tracking_type": "string",
"cost_per_hour": 42.0,
"associations": [
"string"
],
"hidden": [
"string"
],
"options": [
{
"id": "string",
"value": "string",
"color": "string"
}
],
"projects": [
"string"
],
"in_library": true
}
]