Skip to content

Get Publish channel

The resource PublishChannel hands out the channels on which a user can publish a Realestate. All users with an active contract with ImmobilienScout24 are allowed to publish in these two channels: "10000" for www.immobilienscout24.de and "10001" for the customer's homepage. If a realtor wants to publish an object on his website, only, then set 10001, only. This resource is necessary if a user wants to publish objects in one or more groups (Börsen).

GET /offer/v1.0/user/{username}/publishchannel

Supported media types:
XML
JSON

Request

Path Parameters

PARAMETER DESCRIPTION
Usernametate The authentificatet username must be identical to the username which you've entered in the url
me can be used instead of the username

Example

GET: https://rest.immobilienscout24.de/restapi/api/offer/v1.0/user/999999/publishchannel

hands out the publish channels, for which the user with "99999" is entitled to publish objects in.

Response

XML:

1
2
3
4
5
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <common:publishChannelsxmlns:xlink="http://www.w3.org/1999/xlink" xmlns:common="http://rest.immobilienscout24.de/schema/common/1.0">
  <publishChannel title="(Börse) CDI1" id="183"/>
  <publishChannel title="Homepage" id="10001"/>
  <publishChannel title="ImmobilienScout24" id="10000"/>
</common:publishChannels>

JSON:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
{
  "common.publishChannels":{
    "publishChannel":[{
        "@title":"(B<F6>rse)   CDI1",
        "@id":"183"},
      {
        "@title":"Homepage",
        "@id":"10001"},
      {
        "@title":"ImmobilienScout24",
        "@id":"10000"}
      ]
    }
}