Skip to content

Publish a list of Real Estates

This method publishes a list of real estate objects in one or more publish channels.

POST /offer/v1.0/publish/list/

Supported media types:
XML
JSON

Notes:

  • You can use POSTbyID if you want to publish a single real estate object
  • In general, every customer can publish in both publish channels "10000" (Immobilienscout24.de) and "10001" ("customer homeage")
  • Use the web service GET PUBLISHCHANNEL to obtain the publish channel ids, in which the realtor is allowed to publish objects

Request

XML:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<common:publishObjects xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:common="http://rest.immobilienscout24.de/schema/common/1.0">

<publishObject>
  <realEstate id="70628039"/>
  <publishChannel id="10000"/>
</publishObject>

<publishObject>
  <realEstate id="70628039"/>
  <publishChannel id="10000"/>
</publishObject>

<publishObject>
  <realEstate id="1706280392"/>
  <publishChannel id="10000"/>
</publishObject>
</common:publishObjects>

JSON:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
    "common.publishObjects": {
        "publishObject": [
            {
                "realEstate": {
                    "@id": "62634554"
                },
                "publishChannel": {
                    "@id": "10000"
                }
            },
            {
                "realEstate": {
                    "@id": "62634554"
                },
                "publishChannel": {
                    "@id": "10001"
                }
            }
        ]
    }
}

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
<common:publishObjects xmlns:common="http://rest.immobilienscout24.de/schema/common/1.0" xmlns:xlink="http://www.w3.org/1999/xlink">
<publishObject id="70628039_10000">

<realEstate id="70628039"/>

<publishChannel id="10000"/> <messageCode>MESSAGE_OPERATION_SUCCESSFUL</messageCode>

<message>real estate published</message>

</publishObject>

<publishObject>

<realEstate id="70628039"/>

<publishChannel id="10000"/> <messageCode>ERROR_COMMON_REQUEST_CONFLICT</messageCode>

<message>[Publish object already exists for publishchannel id=10000, realestate id=70628039]</message>

</publishObject>

<publishObject>

<realEstate id="1706280392"/>

<publishChannel id="10000"/>

<messageCode>ERROR_COMMON_RESOURCE_NOT_FOUND</messageCode>

<message>[Could not publish real estate with id: 1706280392 because it does not exist.]</message>

</publishObject>
</common:publishObjects>
</common:messages>

JSON:

 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
{
  "common.publishObjects":[
    {
      "publishObject":[
        {
          "@id":"62634554_10000",
          "realEstate":{
            "@id":"62634554",
            "@firstActivationDate":"2015-02-12T12:19:45.197+01:00"
          },
          "publishChannel":{
            "@id":"10000"
          },
          "messageCode":"MESSAGE_OPERATION_SUCCESSFUL",
          "message":"real estate published"
        },
        {
          "@id":"62634554_10001",
          "realEstate":{
            "@id":"62634554"
          },
          "publishChannel":{

            "@id":"10001"
          },
          "messageCode":"MESSAGE_OPERATION_SUCCESSFUL",

          "message":"real estate published"
        }
      ]
    }
  ]
}