diff --git a/src/ApiClient.php b/src/ApiClient.php index 9d5681b..00abcbd 100755 --- a/src/ApiClient.php +++ b/src/ApiClient.php @@ -1605,4 +1605,16 @@ public function deleteSmsCampaign($campaignID) return $this->handleResult($requestResult); } + + /** + * Get list of account's templates + * + * @return stdClass + */ + public function getMyTemplates() + { + $requestResult = $this->sendRequest('templates?owner=me', 'GET'); + + return $this->handleResult($requestResult); + } } \ No newline at end of file