REST API location

Hallo zusammen,

ich vermisse Dokumentation bzw. Beispiele zur Verwendung der location (Arbeitsplatz) REST API.
Ziel ist es per API Arbeitsplätze zu wechseln. Ist das überhaupt möglich und wenn ja, wie lauten die Parameter für:


/services/location/{param}

Vielen Dank und Schönes Wochenende.

Hi sash72,

If you want to logout user from the current location, you can use POST: /services/location/action/ with content


{
  "action":"logout",
  "username":$username
}

If you want to relocate user, you can use POST: /services/location/$newLocationName or $newLocationId/ with content


{
  "username":$username
}

Kind regards,
Stefan

Hi Stefan,

sorry for the late reply.
Works like a charm.

Thank you.

Sascha