POST api/UpdatedCompaniesV2?user={user}&password={password}&applicationName={applicationName}
Met dit request kan van een reeks bedrijven getoetst worden of er een mutatie op is.
Request Information
URI Parameters
| Naam | Omschrijving | Type | Extra informatie | 
|---|---|---|---|
| user | E-mailadres van Mijn DATA-collectief account. | string | Vereist | 
| password | Wachtwoord API koppeling. | string | Vereist | 
| applicationName | Applicatienaam API koppeling. | string | Vereist | 
Body Parameters
UpdatedCompaniesV2Request| Naam | Omschrijving | Type | Extra informatie | 
|---|---|---|---|
| LastChangedDate | Datum laatste wijziging (format "yyyy-MM-dd HH:mm:ss") | string | Geen | 
| CompanyIds | Lijst met DATA-collectief bedrijfsnummers | Verzameling van integer | Geen | 
Request Formats
application/json, text/json
            Voorbeeld:
        
{
  "LastChangedDate": "voorbeeld string 1",
  "CompanyIds": [
    1,
    2
  ]
}
        application/xml, text/xml
            Voorbeeld:
<UpdatedCompaniesV2Request xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <LastChangedDate>voorbeeld string 1</LastChangedDate>
  <CompanyIds>
    <int>1</int>
    <int>2</int>
  </CompanyIds>
</UpdatedCompaniesV2Request>
        Response Information
| Naam | Omschrijving | Type | Extra informatie | 
|---|---|---|---|
| lastChangedDate | Datum laatste wijziging (format "yyyy-MM-dd HH:mm:ss") | string | Geen | 
| updatedCompanies | DATA-collectief bedrijven die gemuteerd zijn | Verzameling van CompanyId | Geen | 
Response Formats
application/json, text/json
            Voorbeeld:
        
{
  "lastChangedDate": "voorbeeld string 1",
  "updatedCompanies": [
    {
      "Id": 1
    },
    {
      "Id": 1
    }
  ]
}
        application/xml, text/xml
            Voorbeeld:
<UpdatedCompaniesResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <lastChangedDate>voorbeeld string 1</lastChangedDate>
  <updatedCompanies>
    <CompanyId>
      <Id>1</Id>
    </CompanyId>
    <CompanyId>
      <Id>1</Id>
    </CompanyId>
  </updatedCompanies>
</UpdatedCompaniesResult>