Jump to content

Rafael Coelho

Member
  • Posts

    1
  • Joined

  • Last visited

About Rafael Coelho

Rafael Coelho's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. Hello! I have the following code below, but is not returning any value from ["configoptions"]. The values are filled, see in the prints: DB: http://prntscr.com/ov8357 Module Settings: http://prntscr.com/ov84oo <?php /** * WHMCS Sample API Call * * @package WHMCS * @author WHMCS Limited <development@whmcs.com> * @copyright Copyright (c) WHMCS Limited 2005-2016 * @license http://www.whmcs.com/license/ WHMCS Eula * @version $Id$ * @link http://www.whmcs.com/ */ // API Connection Details $whmcsUrl = "https://dev.v4b.com.br/"; // For WHMCS 7.2 and later, we recommend using an API Authentication Credential pair. // Learn more at http://docs.whmcs.com/API_Authentication_Credentials // Prior to WHMCS 7.2, an admin username and md5 hash of the admin password may be used. $username = "xxxxxx"; $password = "yyyyy"; // Set post values $postfields = array( 'username' => $username, 'password' => $password, 'action' => 'GetProducts', 'responsetype' => 'json', ); // Call the API $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $whmcsUrl . 'includes/api.php'); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($postfields)); $response = curl_exec($ch); if (curl_error($ch)) { die('Unable to connect: ' . curl_errno($ch) . ' - ' . curl_error($ch)); } curl_close($ch); // Decode response $jsonData = json_decode($response, true); // Dump array structure for inspection var_dump($jsonData["products"]["product"]["1"]["configoptions"]["configoption"]); I need to do something else to get feedback from: $jsonData["products"]["product"]["1"]["configoptions"]["configoption"] ?
  2. Welcome to WHMCS.Community Rafael Coelho! We're glad you're here please take some time to familiarise yourself with the Community Rules & Guidelines and take a moment to introduce yourself to other WHMCS.Community members in the Introduce Yourself Board.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated