How do I get the list of attribute and value options for products?


URL: http://www.nomedoseusite.com.br/api_products_others.php?action=list_products_options_values

&products_id=

 

Header Parameter Format
Usuario1 base64_encode()
Senha1 base64_encode()

 

PHP Sample:

 

	// sample list products options and values
	
	$url = $domain_url . '/api_products_others.php?action=list_products_options_values';
or
$url = $domain_url . '/api_products_others.php?action=list_products_options_values&products_id='.$_GET['products_id']; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json', "Cache-Control: no-cache", 'Usuario1: ' . base64_encode($usuario1), 'Senha1: ' . base64_encode($senha1)) ); $result = curl_exec($ch); curl_close($ch); print_r($result); // sample list products options and values eof

 

Return:

id
text 

 

2021-03-05 19:09 MFORMULA FAQ {writeRevision}
Average rating: 0 (0 Votes)

You cannot comment on this entry

Chuck Norris has counted to infinity. Twice.

{debugMessages}