Jump to content
  • 0

Get Service Options Usign Api


Question

2 answers to this question

Recommended Posts

  • 0
Posted

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());
?>

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...