Difference between revisions of "Offerit REST API Set Currency Exchange Rates"
From Offerit
Offeritnick (talk | contribs) |
Offeritnick (talk | contribs) |
||
Line 2: | Line 2: | ||
| show_rest_api_section = true | | show_rest_api_section = true | ||
}} | }} | ||
− | + | <font color="red">* COMING SOON *</font> | |
== '''PATCH /affiliate/set_currency_exchange_rates''' == | == '''PATCH /affiliate/set_currency_exchange_rates''' == | ||
Revision as of 14:17, 19 October 2018
* COMING SOON *
Contents
PATCH /affiliate/set_currency_exchange_rates
Description
- Sets currency exchange rates in your configuration. For example, in the Configuration Admin, "Currency - All" section, you can update the value for a rate such as "EUR Exchange Rate to USD".
Resource URL
- http://domain/api/affiliate/set_currency_exchange_rates
Response Format
- JSON
- PATCH
- HTTP headers
Parameters
- base
- type: string
- required
- base currency to set rates for
- rates
- type: array
- required
- Array of other currencies with the conversion rate to the "base" parameter above.
Example Code
PHP
<?php $url = 'http://domain/api/affiliate/set_currency_exchange_rates'; $curl = curl_init(); $headers = array( 'api-key: 44b5498dbcb481a0d00b404c0169af62', 'api-username: productsupport' ); $data = Array( 'base' => 'USD', 'rates' => Array( 'EUR' => 0.8639308856, 'AUD' => 1.4094168468, 'CAD' => 1.3047084234, ), ); $data_string = http_build_query($data); $url .= '?'.$data_string; curl_setopt($curl, CURLOPT_GET, 1); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_URL, $url); $resp = curl_exec($curl); //dumps an associative array representation of the json response $output = json_decode($resp, true); if($output !== NULL) { //json was valid. Dump the decoded array print_r($output); } else { //invalid json, just dump the raw response print_r($resp); } // Close request to clear up some resources curl_close($curl); ?>
Example Output
Array ( [result] => success [message] => Saved new rates to config. EUR: 0.8639308856; AUD: 1.4094168468; CAD: 1.3047084234; )