POST api/UpdatedContactsV2?user={user}&password={password}&applicationName={applicationName}
Met dit request kan van een reeks contactpersonen 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
UpdatedContactsV2Request| Naam | Omschrijving | Type | Extra informatie |
|---|---|---|---|
| LastChangedDate |
Datum laatste wijziging (format "yyyy-MM-dd HH:mm:ss") |
string |
Geen |
| ContactIds |
Lijst met DATA-collectief contactpersonen nummers |
Verzameling van integer |
Geen |
Request Formats
application/json, text/json
Voorbeeld:
{
"LastChangedDate": "voorbeeld string 1",
"ContactIds": [
1,
2
]
}
application/xml, text/xml
Voorbeeld:
<UpdatedContactsV2Request xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<LastChangedDate>voorbeeld string 1</LastChangedDate>
<ContactIds>
<int>1</int>
<int>2</int>
</ContactIds>
</UpdatedContactsV2Request>
Response Information
| Naam | Omschrijving | Type | Extra informatie |
|---|---|---|---|
| LastChangedDate |
Datum laatste wijziging (format "yyyy-MM-dd HH:mm:ss") |
string |
Geen |
| UpdatedContacts |
DATA-collectief contpersonen die gemuteerd zijn |
Verzameling van ContactId |
Geen |
Response Formats
application/json, text/json
Voorbeeld:
{
"LastChangedDate": "voorbeeld string 1",
"UpdatedContacts": [
{
"Id": 1
},
{
"Id": 1
}
]
}
application/xml, text/xml
Voorbeeld:
<UpdatedContactsResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<LastChangedDate>voorbeeld string 1</LastChangedDate>
<UpdatedContacts>
<ContactId>
<Id>1</Id>
</ContactId>
<ContactId>
<Id>1</Id>
</ContactId>
</UpdatedContacts>
</UpdatedContactsResult>