Example #1
0
 /**
  * Delete recordings.
  *
  * Delete recordings for a set of record IDs.
  *
  * @param array $recordIDs
  *   A set of record IDs to apply the delete action to.
  *
  * @return boolean
  *   The success status as TRUE.
  */
 public function deleteRecordings($recordIDs)
 {
     $options = ['recordID' => implode(',', $recordIDs)];
     $this->client->get('deleteRecordings', $options);
     return true;
 }
Example #2
0
 /**
  * Delete recording.
  *
  * @return mixed
  */
 public function delete()
 {
     $options = ['recordID' => $this->recordID];
     return $this->client->get('deleteRecordings', $options);
 }