Hi Folks,
I'm starting to use the Circle 2g API.
The documentation can be found here.
I can get system controller to work which generates a security token.
All other Post and Get calls use a subscription id and never reference the security token.
What is the parameter name for security token to pass during a session?
The above works great and generates a token.
Of course when using a GET to list all projects for a user I get invalid credentials because nowhere in the documentation does it state what the parameter is for security token.
Subscription ID isn't the security token from what I can tell.
$service_url = 'https://eu.xmcircle.com/CloudAPI/v1/'.$subscription_id.'/projects?projectType=1';
$curl = curl_init($service_url);
$data_string = json_encode($curl_post_data);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$curl_response = curl_exec($curl);
Thanks so much for you help.