This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Error: The value "105-0" does not exist, or it is a conflict object.

Former Member
Former Member
I'm trying to update multi-select value with REST API.

The value I'm trying to set is with ObjectTypeId 105 and the ObjectId is 1000094. ObjectId is a key value in another system - so it's been set by integration to the Object. Value 100094 is also shown in DisplayName and in another field. So there should be multiple fields where it can be found. Only one item can be found if you search with value 1000094.

I have tried two different messages with slightly different error. One which should be searching id of the object and another one for DisplayValue.

Example 1:
[
{
    "PropertyDef": 1214,
    "TypedValue": {
            "DataType": 10,
            "Lookups": [{
                "DisplayValue": "1000094",
                "Version": -1
            }]
        }
}
]

Returns: "The value "105-0" does not exist, or it is a conflict object."

Example 2:

[
{
    "PropertyDef": 1214,
    "TypedValue": {
            "DataType": 10,
            "Lookups": [{
                "Item": "1000094",
                "Version": -1
            }]
        }
}
]

Returns: "The value "105-1000094" does not exist, or it is a conflict object."

I'm totally confused. I have exactly same kind of a working setup with only one difference. ObjectId is set by M-Files instead of integration.