GET api/BaseTableLegalForm?user={user}&password={password}&applicationName={applicationName}

Met dit request kan de stamtabel met rechtsvorm opgevraagd worden.

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

Body Parameters

None.

Response Information

NaamOmschrijvingTypeExtra informatie
BaseTableLegalForm

Stamtabel rechtsvorm

Verzameling van LegalFormItem

Geen

Response Formats

application/json, text/json

Voorbeeld:
{
  "BaseTableLegalForm": [
    {
      "LegalFormID": "voorbeeld string 1",
      "Description": "voorbeeld string 2"
    },
    {
      "LegalFormID": "voorbeeld string 1",
      "Description": "voorbeeld string 2"
    }
  ]
}

application/xml, text/xml

Voorbeeld:
<BaseTableLegalFormResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <BaseTableLegalForm>
    <LegalFormItem>
      <LegalFormID>voorbeeld string 1</LegalFormID>
      <Description>voorbeeld string 2</Description>
    </LegalFormItem>
    <LegalFormItem>
      <LegalFormID>voorbeeld string 1</LegalFormID>
      <Description>voorbeeld string 2</Description>
    </LegalFormItem>
  </BaseTableLegalForm>
</BaseTableLegalFormResult>