GET api/WebsiteleadsWebsites?user={user}&password={password}&applicationName={applicationName}
Alle websites bij een Website-Leadsaccount opvragen.
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
None.
Response Information
Naam | Omschrijving | Type | Extra informatie |
---|---|---|---|
Account |
DATA-collectief account |
string |
Geen |
Websites |
Lijst met websites |
Verzameling van WebsiteleadsWebsite |
Geen |
Response Formats
application/json, text/json
Voorbeeld:
{ "Account": "voorbeeld string 1", "Websites": [ { "WebsiteId": 1, "Name": "voorbeeld string 2", "Url": "voorbeeld string 3", "StartDate": "voorbeeld string 4", "EndDate": "voorbeeld string 5", "MinimalRatingScore": 6, "EmailForleads": [ "voorbeeld string 1", "voorbeeld string 2" ] }, { "WebsiteId": 1, "Name": "voorbeeld string 2", "Url": "voorbeeld string 3", "StartDate": "voorbeeld string 4", "EndDate": "voorbeeld string 5", "MinimalRatingScore": 6, "EmailForleads": [ "voorbeeld string 1", "voorbeeld string 2" ] } ] }
application/xml, text/xml
Voorbeeld:
<WebsiteleadsWebsitesResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Account>voorbeeld string 1</Account> <Websites> <WebsiteleadsWebsite> <WebsiteId>1</WebsiteId> <Name>voorbeeld string 2</Name> <Url>voorbeeld string 3</Url> <StartDate>voorbeeld string 4</StartDate> <EndDate>voorbeeld string 5</EndDate> <MinimalRatingScore>6</MinimalRatingScore> <EmailForleads> <string>voorbeeld string 1</string> <string>voorbeeld string 2</string> </EmailForleads> </WebsiteleadsWebsite> <WebsiteleadsWebsite> <WebsiteId>1</WebsiteId> <Name>voorbeeld string 2</Name> <Url>voorbeeld string 3</Url> <StartDate>voorbeeld string 4</StartDate> <EndDate>voorbeeld string 5</EndDate> <MinimalRatingScore>6</MinimalRatingScore> <EmailForleads> <string>voorbeeld string 1</string> <string>voorbeeld string 2</string> </EmailForleads> </WebsiteleadsWebsite> </Websites> </WebsiteleadsWebsitesResult>