GET api/ContactList/{id}?user={user}&password={password}&applicationName={applicationName}

Beperkte set informatie van alle contactpersonen bij 1 bedrijf opvragen o.b.v. het bedrijfsnummer.

Request Information

URI Parameters

NaamOmschrijvingTypeExtra informatie
user

E-mailadres van Mijn DATA-collectief account.

string

Vereist

password

Wachtwoord API koppeling.

string

Vereist

applicationName

Applicatienaam API koppeling.

string

Vereist

id

Bedrijfsnummer.

integer

Vereist

Body Parameters

None.

Response Information

NaamOmschrijvingTypeExtra informatie
CompanyId

DATA-collectief bedrijfsnummer

integer

Geen

Contacts

Gevonden contactpersonen

Verzameling van ContactLimitedResult

Geen

Response Formats

application/json, text/json

Voorbeeld:
{
  "CompanyId": 1,
  "Contacts": [
    {
      "ID": 1,
      "Name": "voorbeeld string 2",
      "FirstName": "voorbeeld string 3",
      "FunctionID": "voorbeeld string 4",
      "FunctionDescription": "voorbeeld string 5",
      "Gender": 0,
      "Deleted": true
    },
    {
      "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:
<ContactListResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <CompanyId>1</CompanyId>
  <Contacts>
    <ContactLimitedResult>
      <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>
    <ContactLimitedResult>
      <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>
  </Contacts>
</ContactListResult>