I added a new field to the account entity. and I'm creating new accounts using the API and want to be able to provide the text and not the table value.
<Property Name="new_industry" Type="Edm.Int32"/>
Basically I want to provide "Airline / Aviation" and the get back "100000002" or just be able to provide "Airline / Aviation" and the CRM will convert it automatically in the POST requests.
"value": [
{
"name": "Test with 1111",
"new_industry": 100000002
}
]