kemeris Posted March 13, 2016 Report Posted March 13, 2016 I have two service options in universal module. Can anyone tell me how to get these options for a given service via API? Thanks
0 Tyson Posted March 14, 2016 Report Posted March 14, 2016 Call Services::get using the API to fetch the service by it's ID. The service fields are available from the "fields" object attached to the service. e.g. <?php require_once "blesta_api.php"; $user = "username"; $key = "key"; $url = "https://yourdomain.com/installpath/api/"; $api = new BlestaApi($url, $user, $key); $response = $api->get("services", "get", array('service_id' => 1)); print_r($response->response()); print_r($response->errors()); ?> Michael and Blesta Addons 2
Question
kemeris
I have two service options in universal module. Can anyone tell me how to get these options for a given service via API?
Thanks
2 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now