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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...