GET/projects/api/v3/customitems/{customItemId}/fields.json
Get custom item fields for a specific custom item
Return all custom item fields for a specific custom item.
Path Params
- Name
customItemId
- Type
- integer
- required
- Description
Query Params
- Name
updatedAfter
- Type
- string
- Description
filter by custom items updated after specified date
- Name
orderMode
- Type
- string
- Description
sort order
- Allowed values
asc
desc
- Name
pageSize
- Type
- integer
- Description
number of items in a page
- Default
50
- Name
page
- Type
- integer
- Description
page number
- Default
1
- Name
skipCounts
- Type
- boolean
- Description
SkipCounts allows you to skip doing counts on a list API endpoint for performance reasons.
- Name
showDeleted
- Type
- boolean
- Description
include deleted items
- Default
false
- Name
include
- Type
- array[string]
- Description
include
- Format
- Comma separated values
- Allowed values
createdBy
updatedBy
deletedBy
- Name
ids
- Type
- array[integer]
- Description
filter by specific ids
- Format
- Comma separated values
- Name
fields[users]
- Type
- array[string]
- Description
- Format
- Comma separated values
- Allowed values
id
firstName
lastName
title
email
companyId
company
isAdmin
isClientUser
isServiceAccount
type
deleted
avatarUrl
lengthOfDay
workingHoursId
workingHour
userRate
userCost
canAddProjects
- Name
fields[customItemFields]
- Type
- array[string]
- Description
- Format
- Comma separated values
- Allowed values
customItemId
displayName
type
definition
twType
twId
state
displayOrder
options
createdBy
createdAt
updatedBy
updatedAt
deletedBy
deletedAt
- Name
customItemIds
- Type
- array[integer]
- Description
filter by custom item ids
- Format
- Comma separated values
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 OK
Response contains information about a specific custom item field.
- Code
- 400
- Type
- object
- Schema
- Description
- 400 Bad Request
ErrorResponse defines how []Error should be marshaled to JSON.
200 OK
Response
{
"customItemField": {
"createdAt": "string",
"createdBy": {
"id": 0,
"meta": {},
"type": "string"
},
"customItemId": 0,
"definition": "string",
"deletedAt": "string",
"deletedBy": {
"id": 0,
"meta": {},
"type": "string"
},
"displayName": "string",
"displayOrder": 0,
"id": 0,
"options": [
{
"color": "string",
"displayOrder": 0,
"id": 0,
"label": "string",
"twId": "string"
}
],
"state": "string",
"twId": "string",
"twType": "string",
"type": "string",
"updatedAt": "string",
"updatedBy": {
"id": 0,
"meta": {},
"type": "string"
}
},
"included": {
"users": {
"additionalProp": {
"avatarUrl": "string",
"canAccessPortfolio": true,
"canAddProjects": true,
"canManagePortfolio": true,
"company": {
"id": 0,
"meta": {},
"type": "string"
},
"companyId": 0,
"companyRoleId": 0,
"createdAt": "string",
"createdBy": {
"id": 0,
"meta": {},
"type": "string"
},
"deleted": true,
"email": "string",
"firstName": "string",
"id": 0,
"isAdmin": true,
"isClientUser": true,
"isPlaceholderResource": true,
"isServiceAccount": true,
"jobRoles": [
{
"id": 0,
"meta": {},
"type": "string"
}
],
"lastLogin": "string",
"lastName": "string",
"lengthOfDay": 0,
"meta": {},
"skills": [
{
"id": 0,
"meta": {},
"type": "string"
}
],
"teams": [
{
"id": 0,
"meta": {},
"type": "string"
}
],
"timezone": "string",
"title": "string",
"type": "string",
"updatedAt": "string",
"updatedBy": {
"id": 0,
"meta": {},
"type": "string"
},
"userCost": 0,
"userRate": 0,
"userRates": {
"additionalProp": {
"amount": 0,
"currency": {
"id": 0,
"meta": {},
"type": "string"
}
}
},
"workingHour": {
"id": 0,
"meta": {},
"type": "string"
},
"workingHoursId": 0
}
}
}
}