Example #1
0
 /**
  * Makes a request to the Encoding.com API with Query, returns the response
  *
  * @return   stdClass The JSON response from the request
  * @throws   Exception
  */
 public function send()
 {
     $parameters = ['body' => ['json' => $this->query->getPayload()]];
     return $this->request('post', $this->getManageUrl(), $parameters);
 }