To make it easier to help you get started you can use our very basic Codebookie class to start making the API calls to our interface.
Most of our documentation on how to use the API refers to this class file for the examples
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
<?php /** * main API class file for codeBookie * * name CodeBookie * */ class CodeBookie { private $apiToken; public function __construct() { $this->apiToken = YOUR_API_TOKEN; } public function connectAPI($interface,$dataArray) { $url = "https://members.codebookie.com/api/v1/"; $jsonData = json_encode($dataArray); $ch = curl_init($url.$interface); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonData); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json','Content-Length: ' . strlen($jsonData))); $result = curl_exec($ch); print_r($result); $array = json_decode($result,true); if (is_array($array)): return $array; else: return 'CONNECTION_FAILED'; die; endif; } /** * * getCoupon * * get the coupon information. If it exists, a checkout token is returned. If the code is invalid or doesn't exist * a error status will return. * * inputs: * * @param $couponCode * @param $productCode * @param $price */ public function getCoupon($couponCode,$productCode,$price) { $data = array( 'api_token'=>$this->apiToken, 'coupon_code'=>$couponCode, 'product_code'=>$productCode, 'price'=>$price ); $result = $this->connectAPI('getCoupon',$data); return $result; } /** * * verify * * verify the discounted price and the checkout token. Ideally this should be done before going to the final checkout page * and after the final payment. * * If the information cannot be verified the order should not be fulfilled. * * @param $couponCode * @param $productCode * @param $originalPrice * @param $discountedPrice * @param $checkoutToken */ public function verify($couponCode,$productCode,$originalPrice,$discountedPrice,$checkoutToken) { $data = array( 'api_token'=>$this->apiToken, 'coupon_code'=>$couponCode, 'product_code'=>$productCode, 'original_price'=>$originalPrice, 'discounted_price'=>$discountedPrice, 'checkout_token'=>$checkoutToken ); $result = $this->connectAPI('verify',$data); return $result; } /** * * confirmOrder * * confirmOrder places the finalized order information into CodeBookie after the payment has been set. * * * @param $checkoutToken * @param $buyerEmail * @param $txnID * @param $orderID * @param null $ipAddress */ public function confirmOrder($checkoutToken,$buyerEmail,$txnID,$orderID,$ipAddress = null) { $data = array( 'api_token'=>$this->apiToken, 'checkout_token'=>$checkoutToken, 'buyer_email'=>$buyerEmail, 'txn_id'=>$txnID, 'order_id'=>$orderID ); if ($ipAddress != null): $data['ip_address'] = $ipAddress; endif; $result = $this->connectAPI('confirmOrder',$data); return $result; } /** * * getTokenInfo * * given the checkout token, return the order information of the coupon order */ public function getTokenInfo($checkoutToken) { $data = array( 'api_token'=>$this->apiToken, 'checkout_token'=>$checkoutToken ); $result = $this->connectAPI('getTokenInfo',$data); return $result; } /** * * refundCouponCommission * * if an order is refunded, we need to retract the commission from the affiliate * * @param $confirmationID */ public function refundCouponCommission($confirmationID) { $data = array( 'api_token'=>$this->apiToken, 'confirmation_id'=>$confirmationID ); $result = $this->connectAPI('cancelCommission',$data); return $result; } /** * * listSites * * list all sites associated with your account */ public function listSites() { $data = array( 'api_token'=>$this->apiToken ); $result = $this->connectAPI('websites/list',$data); return $result; } /** * * insertProduct * * insert a product into codebookie. If SKU exists already then update the product data */ public function insertProduct($sku,$productName,$description,$websiteID) { $data = [ 'api_token'=>$this->apiToken, 'sku'=>$sku, 'product_name'=>$productName, 'description'=>$description, 'website_id'=>$websiteID ]; $result = $this->connectAPI('products/insertProduct',$data); return $result; } /** * * deleteProduct * * delete a product from codebookie. */ public function deleteProduct($sku,$websiteID) { $data = [ 'api_token'=>$this->apiToken, 'sku'=>$sku, 'website_id'=>$websiteID ]; $result = $this->connectAPI('products/deleteProduct',$data); return $result; } /** * * insertBulkProducts * * insert bulk products given an array of products * * @param $products * */ public function insertBulkProducts($products) { $data = [ 'api_token'=>$this->apiToken, 'products'=>$products ]; $result = $this->connectAPI('products/bulkInsert',$data); return $result; } } ?> |