diff --git a/src/Endpoints/Asset.php b/src/Endpoints/Asset.php index 2236fce..eee3b33 100644 --- a/src/Endpoints/Asset.php +++ b/src/Endpoints/Asset.php @@ -33,4 +33,14 @@ public function getAssetById($id) { return $this->request('GET', "api/assetmgmt/assets/${id}"); } + + /** + * @see https://developers.topdesk.com/explorer/?page=assets#/assignments/getAssignments + * @param $id + * @return + */ + public function getAssetAssignments($id) + { + return $this->request('GET', "api/assetmgmt/assets/${id}/assignments"); + } }