CustomFieldValue

A single custom field value.

More info: see the get operation and the custom field values endpoint.

Fields

FieldDescription
id
int 
(required)

Unique ID

Example value:123
typeid
int 
(required)

Type ID

Example value:10000
caption
mlstring 
(required)

Human-readable name for the value

Example value:"Rock"
sortorder
int 
(required)

Indicated the manual sort order

isarchived
bool 
(required)

Whether or not this item is archived

createdts
timestamp 
(required)

Created timestamp

Example value:"2014-09-26 15:24:36"
lastupdatets
timestamp 
(required)

Last updated timestamp

Example value:"2014-09-26 15:24:36"

Example

1{
2    "id": 123,
3    "typeid": 10000,
4    "caption": "Rock",
5    "sortorder": 0,
6    "isarchived": false,
7    "createdts": "2014-09-26 15:24:36",
8    "lastupdatets": "2014-09-26 15:24:36"
9}