Hi there.
So here’s my situation currently. I am working on an automated inventory of some tech infrastructure. Certain devices have a single serial number while others have multiple.
The multi-select type is nice but the values are typically a set of enum values that are already known. With the API, I’ve noticed I cannot define values in a multi-select field that have not already been created, hence when I attempt to create the record, it doesn’t work.
Is there a list/array-type field where I don’t need to have the values pre-defined?
An example API request:
{
"fields": {
"Hostname": "R1",
"Mgmt IP": "192.168.1.1",
"Model": [
"recGWOZKSXAnmB6l3"
],
"Network OS": [
"rec1YsLAROLBIF02H"
],
"Current Image": "sup-bootdisk:s72033-advipservicesk9-mz.122-33.SXI6.bin",
"Current Software Version": "12.2(33)SXI6",
"Login Status": "Successful",
"Serial Numbers": [
"abc123456jkl",
"wpe204301spo"
]
}
}