Employees

  1. List
  2. Detail
  3. Ids

List /team/list

Returns all categories with employees with an active "Show on Homepage" flag in Justimmo

Example

https://api.justimmo.at/rest/v1/team/list
<?xml version="1.0" encoding="UTF-8"?>
<justimmo>
    <kategorie name="Geschäftsführung">
        <mitarbeiter>
            <id>264110</id>
            <bild>
                <pfad>https://files.justimmo.at/public/pic/user_small/APRil3QC47.jpg</pfad>
                <pfad_medium>https://files.justimmo.at/public/pic/user_medium/APRil3QC47.jpg</pfad_medium>
            </bild>
            <vorname>Aurel</vorname>
            <nachname>Stehmann</nachname>
            <position>Geschäftsführung</position>
            <email>a.stehmann@justimmo.at</email>
        </mitarbeiter>
    </kategorie>
</justimmo>

Detail /team/detail

Returns detailed information of a single employee

Parameters

id
The id of the employee

Example

https://api.justimmo.at/rest/v1/team/detail?id=264110
<?xml version="1.0" encoding="UTF-8"?>
<justimmo>
    <id>264110</id>
    <bild>
        <pfad>https://files.justimmo.at/public/pic/user_small/APRil3QC47.jpg</pfad>
        <pfad_medium>https://files.justimmo.at/public/pic/user_medium/APRil3QC47.jpg</pfad_medium>
    </bild>
    <vorname>Aurel</vorname>
    <nachname>Stehmann</nachname>
    <position>Geschäftsführung</position>
    <email>a.stehmann@justimmo.at</email>
</justimmo>

Ids /employee/ids

Returns ids of matching employees as JSON without limit and offset limitations.

Example

All employee ids

https://api.justimmo.at/rest/v1/team/ids
["123","125","159"]