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 Quote
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()); ?> Blesta Addons and Michael 2 Quote
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.