Retrieve all projects for user
This method retrieves all projects of the requested user
GET /offer/v1.0/user/{username}/realestateproject
Request
Path Parameters
PARAMETER |
DESCRIPTION |
Username |
the username which the user uses for logging in to www.immobilienscout24 |
me |
"me" can be used instead of the username, when the user is logged in by 3-legged oauth |
Successful response
XML:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns4:realEstateProjects xmlns:common="http://rest.immobilienscout24.de/schema/common/1.0" xmlns:gis="http://rest.immobilienscout24.de/schema/platform/gis/1.0" xmlns:ns4="http://rest.immobilienscout24.de/schema/offer/realestateproject/1.0" xmlns:ns5="http://www.w3.org/1999/xlink">
<realEstateProject id="3">
<name>testprojekt2</name>
<price>
<minimal>10000.00</minimal>
<maximal>1000000.00</maximal>
</price>
<space>
<minimal>200.00</minimal>
<maximal>500.00</maximal>
</space>
<numberOfHousingUnit>3</numberOfHousingUnit>
<interiorQuality>SOPHISTICATED</interiorQuality>
<freeFrom>morgen</freeFrom>
<address>
<street>andreasstrasse</street>
<houseNumber>10</houseNumber>
<postcode>10179</postcode>
<city>berlin</city>
</address>
</realEstateProject>
<realEstateProject id="1">
<name>testprojekt</name>
<price>
<minimal>1000.00</minimal>
<maximal>1000000.00</maximal>
</price>
<space>
<minimal>200.00</minimal>
<maximal>800.00</maximal>
</space>
<numberOfHousingUnit>10</numberOfHousingUnit>
<interiorQuality>SOPHISTICATED</interiorQuality>
<freeFrom>morgen</freeFrom>
<address>
<street>andreasstrasse</street>
<houseNumber>10</houseNumber>
<postcode>10179</postcode>
<city>berlin</city>
</address>
</realEstateProject>
</ns4:realEstateProjects>
|