Modified - Used to designate change to a business entity’s data. For example, the business entity files a new document,
change to registered agent, change to officers, change to address, change of status, etc.
Update - Used to designate that a business entity’s record in the API database has been changed. For example, the business entity is new
and therefore added to the API database. An update may, or may not, indicate that the business entity’s data was modified.
Code Sample: API Call (C# .NET):
string myToken = "226148a2-b3ce-482f-83a8-bdeca1403883";
Uri requestUri = new Uri("https://api.sos.iowa.gov/businessEntity/id/19862");
System.Net.Http.HttpClient httpClient = new System.Net.Http.HttpClient();
string response = "";
httpClient.DefaultRequestHeaders.Authorization =
new System.Net.Http.Headers.AuthenticationHeaderValue("Basic", myToken);
System.Threading.Tasks.Task.Run(async () =>
{
response = await httpClient.GetStringAsync(requestUri);
}).Wait();
Console.WriteLine(response);