Hi Dorine,
I have changed the data type to "Long Integer" but get another error:
Parsing '_embedded.jobs[0]._embedded.custom_fields[0].value': Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'System.Nullable`1[System.Int64]' because the type requires a JSON primitive value (e.g. string, number, boolean, null) to deserialize correctly.
To fix this error either change the JSON to a JSON primitive value (e.g. string, number, boolean, null) or change the deserialized type to an array or a type that implements a collection interface (e.g. ICollection, IList) like List<T> that can be deserialized from a JSON array. JsonArrayAttribute can also be added to the type to force it to deserialize from a JSON array.
Path '_embedded.jobs[0]._embedded.custom_fields[0].value', line 1, position 5088.
It is a list (apparently) but I haven't seen any "multiple values" being returned
Even if I use another rest call to provide only one "Job" that I know it only has one value in this field I get the
Error converting value 970404 to type 'System.Int64 Error
Ricardo