If we make any changes to the API that are not backward compatible, we release a new version of the API.
The version to be used is dictated by the first slug in the endpoint url.
All endpoints start with the version number first.
An invalid version number in the URL will always result in a 404 error.
Versioning is handled transparently by the SDK, it just needs to be specified in the config options when instantiating the class
$config = array( "api_key" => "blahblahblah", "api_secret" => "blahblahblah", "api_version" => '1' // <-- specifying version ); $API = new WCEAAPI($config);
It can also be set after instantiating the class
$config = array( "api_key" => "blahblahblah", "api_secret" => "blahblahblah" ); $API = new WCEAAPI($config);$API->setConfig('api_version', 1);