Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.06 KB

receive.md

File metadata and controls

33 lines (24 loc) · 1.06 KB

Receive Documentation

The simplest way to receive Bitcoin payments. Blockchain forwards all incoming Bitcoin to the address you specify.

Be sure to check out the official documentation for information on callback URLs.

Usage

Call Receive->generate on a Blockchain object. Pass an address and an optional callback URL. All Bitcoin received at the generated address will be forwarded to the input address. Returns a ReceiveResponse object.

$Blockchain = new Blockchain($api_code);

$my_address = '1xYourBitcoinAddress';
$callback_url = 'http://example.com/transaction?secret=mySecret';

$response = $Blockchain->Receive->generate($my_address, $callback_url);

// Display address to user:
echo "Send coins to " . $response->address;

###ReceiveReponse Object

class ReceiveResponse {
    public $address;                    // string
    public $fee_percent;                // int
    public $destination;                // string
    public $callback_url;               // string
}