Skip to content

List all publication channels for a Real Estate

This method shows a list of the channels, where the named real estate object is published.

GET /offer/v1.0/publish?realestate={id}

Supported media types:
XML
JSON

Request

Path parameters
PARAMETER VALUE DESCRIPTION
realestate immoscout object id
publishchannel 10000 or 10001 optional

Examples

https://rest.immobilienscout24.de/restapi/api/offer/v1.0/publish?realestate=58850320

list all publish channels. in which the object with the immoscout object id 58850320 is published.

https://rest.immobilienscout24.de/restapi/api/offer/v1.0/publish?publishchannel=10001&realestate=58850320

lists the mapping of the real estate object with the immoscout object id 58850320 to the publish channel with the ID=10001, as a list; if the real estate object is not mapped to this publish channel, then the list is empty

Response

XML:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <common:publishObjectsxmlns:xlink="http://www.w3.org/1999/xlink" xmlns:common="http://rest.immobilienscout24.de/schema/common/1.0">
  <publishObject id="58850320_183">
    <realEstate title="testzettel" id="58850320"/>
    <publishChannel title="(Börse) CDI1" id="183"/>
  </publishObject>
  <publishObject id="58850320_10001">
    <realEstate title="testzettel" id="58850320"/>
    <publishChannel title="Homepage" id="10001"/>
  </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
23
24
25
26
27
28
{

"common.publishObjects":   {
"publishObject":[
{
"@id":"58850320_183",
    "realEstate":{
            "@title":"testzettel",
            "@id":"58850320"
    },
      "publishChannel":{
          "@title":"(Börse) CDI1",
          "@id":"183"
      }},  
      {
      "@id":"58850320_10001",
      "realEstate":{
          "@title":"testzettel",
          "@id":"58850320"
      },
      "publishChannel":{
            "@title":"Homepage",
            "@id":"10001"
        }
      }
    ]
  }
}