I tried to integrate the block.io Payment gateway in c#.net by using the cURL method. I am stuck at getting a response after successful payment, once payment is done on the address then block.io hit on the given URL of our server in the following JSON format).
{
"notification_id": "..."
"delivery_attempt": 1,
"created_at": 1426104819,
"type": "address",
"data": {
"network": "BTC",
"address": "3cBraN1Q...",
"balance_change": "0.01000000", // net balance change, can be negative
"amount_sent": "0.00000000",
"amount_received": "0.01000000",
"txid": "7af5cf9f2...", // the transaction's identifier (hash)
"confirmations": X, // see below
"is_green": false // legacy, can be ignored
}
}
Ho to get it in plain c#.net?