GET api/ContactLimited/{id}?user={user}&password={password}&applicationName={applicationName}
Beperkte set informatie van een contactpersoon opvragen o.b.v. het contactpersoonsnummer.
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 |
| id |
Contactpersoon nummer. |
integer |
Vereist |
Body Parameters
None.
Response Information
| Naam | Omschrijving | Type | Extra informatie |
|---|---|---|---|
| ID |
DATA-collectief contactpersoonsnummer |
integer |
Geen |
| Name |
Naam, de laatste 3 karakters zijn verborgen met ... |
string |
Geen |
| FirstName |
Voornaam |
string |
Geen |
| FunctionID |
Functie |
string |
Geen |
| FunctionDescription |
Functie omschrijving |
string |
Geen |
| Gender |
Geslacht |
Gender |
Geen |
| Deleted |
Verwijderd |
boolean |
Geen |
Response Formats
application/json, text/json
Voorbeeld:
{
"ID": 1,
"Name": "voorbeeld string 2",
"FirstName": "voorbeeld string 3",
"FunctionID": "voorbeeld string 4",
"FunctionDescription": "voorbeeld string 5",
"Gender": 0,
"Deleted": true
}
application/xml, text/xml
Voorbeeld:
<ContactLimitedResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <ID>1</ID> <Name>voorbeeld string 2</Name> <FirstName>voorbeeld string 3</FirstName> <FunctionID>voorbeeld string 4</FunctionID> <FunctionDescription>voorbeeld string 5</FunctionDescription> <Gender>Male</Gender> <Deleted>true</Deleted> </ContactLimitedResult>