# Custom field types
# Text
Text field will be represented a string value in JSON.
{
"simpleCustomFields": {
"sampleText": "This is a sample text"
}
}
1
2
3
4
5
2
3
4
5
# Number
Number field will be represented a number value in JSON.
{
"simpleCustomFields": {
"sampleNumber": 2025,
"anotherSampleNumber": 4.5
}
}
1
2
3
4
5
6
2
3
4
5
6
# Switch
Switch will be represented as boolean (true/false) value in JSON.
{
"simpleCustomFields": {
"sampleSwitch": true,
"anotherSampleSwitch": false
}
}
1
2
3
4
5
6
2
3
4
5
6
# Date/Time
Date/Time will be represented as string value in JSON, in ISO8601 format.
{
"simpleCustomFields": {
"sampleDate": "2024-02-01T01:02:03Z"
}
}
1
2
3
4
5
2
3
4
5
# Labels
Label will be represented differently, based on the format.
# Labels in simpleCustomField
format
Label will be represend as an array of string.
{
"simpleCustomFields": {
"sampleLabels": ["Label 1", "Label 2"]
}
}
1
2
3
4
5
2
3
4
5
# Labels in other formats
Label will be represent as an array of label object.
{
"customFields": {
"sampleLabels": [
{
"name": "Sample Label 1",
"globalUniqueName": "field-621dd83c7909e74c2ba6584e/sample-label-1",
"id": "6320b0b1dc6da9ae81c5fa71"
},
{
"name": "Sample Label 2",
"globalUniqueName": "field-621dd83c7909e74c2ba6584e/sample-label-2",
"id": "6320b0b1dc6da9ae81c5fa72"
}
]
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16