Hi,
I'm trying to update an existing instance or create a new instance with REST API. I'm using api version 3.0 and Postman. I want to put data to choice field, but I know only name from data source. It's possible at all?
I tried to put a value in two ways:
"formFields": [
{
"guid": "c2e37260-5d57-410e-997c-1f19bb12a4c0",
"svalue": "USD"
}
]
System always trying to fit value "USD" to Id, but ID is different, 3 for example.
and
"formFields": [
{
"guid": "c2e37260-5d57-410e-997c-1f19bb12a4c0",
"value":
{"name": "USD" }
}
]
System always trying to search data source with empty ID.
Changing the data source type (fixed value list, SP list) and choice field operation mode doesn't help.
I have problem with choice field, but person field works fine, and I can send well.