I am using the RetrieveAvailableLanguages function to run this query on my target environment.
https://ORG_NAME.crm.dynamics.com/api/data/v9.0/RetrieveAvailableLanguages
In the response from this OData query it should provide one or more language ids to me. Is there some $filter
query of other OData query that I can append to the end of my API call to check if an element exist in the array that is returned from this API call? I tried some exploration using the OData In operator, but was not able to check if a certain Id exists in the array using that approach.
{
"@odata.context": "https://ORG_NAME.crm.dynamics.com/api/data/v9.0/$metadata#Microsoft.Dynamics.CRM.RetrieveAvailableLanguagesResponse",
"LocaleIds": [
3082,
1033
]
}