POST api/LabelCreate?user={user}&password={password}&applicationName={applicationName}
Nieuw eigen label aanmaken en vullen met actieve DATA-collectief bedrijven of een bestaand label aanvullen met DATA-collectief bedrijven (maximaal 30.000 bedrijven per request)
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
LabelCreateRequestNaam | Omschrijving | Type | Extra informatie |
---|---|---|---|
LabelName |
Nieuwe of een bestaande labelnaam |
string |
Geen |
CompanyIds |
Lijst met DATA-collectief bedrijfsnummers (maximaal 30.000) |
Verzameling van integer |
Geen |
Request Formats
application/json, text/json
Voorbeeld:
{ "LabelName": "voorbeeld string 1", "CompanyIds": [ 1, 2 ] }
application/xml, text/xml
Voorbeeld:
<LabelCreateRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <LabelName>voorbeeld string 1</LabelName> <CompanyIds> <int>1</int> <int>2</int> </CompanyIds> </LabelCreateRequest>
Response Information
Response Formats
application/json, text/json
Voorbeeld:
"voorbeeld string 1"
application/xml, text/xml
Voorbeeld:
<string>voorbeeld string 1</string>