Skip to content

Realestate published channel

This method shows a list of publish channels in which the real estate object is published, by publish channel id

GET /offer/v1.0/publish/{id}

Supported media types:
XML
JSON

Request

Path parameters
PARAMETER VALUE
id the unique publish id

Example

https://rest.immobilienscout24.de/restapi/api/offer/v1.0/publish/58850320_10001

Lists the publish resource with ID=58850320_10001. That is the mapping of the real estate object with the Scout object ID=58850320 to the publish channel with the ID=10001. ID 1001 is reserved for the customer's homepage.

Response

XML:

1
2
3
4
5
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<common:publishObject xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:common="http://rest.immobilienscout24.de/schema/common/1.0" id="58850320_10001">
  <realEstate title="testzettel" id="58850320"/>
  <publishChannel title="Homepage" id="10001"/>
</common:publishObject>

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
{
"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"
      }
    }]
  }
}