This repository was archived by the owner on Jan 22, 2021. It is now read-only.

Description
https://test.bitpay.com/bills/KZQKmQDfacT3uyXnp2wESj
Method: PUT
$request = $this->createNewRequest();
$request->setMethod(Request::METHOD_PUT);
$request->setPath('bills/'. $id);
$body = array(
'description' => self::status_complete,
'price' => 2,
'quantity' => 1,
'token' => $this->token->getToken(),
);
$request->setBody(json_encode($body));
$this->addIdentityHeader($request);
$this->addSignatureHeader($request);
$this->request = $request;
$this->response = $this->sendRequest($request);
Response:
[ERROR] In CurlAdapter::sendRequest(): curl_exec failed with the error "Empty reply from server".