Sorted:

URL: http://www.namedoseusiten.com.br/api_seller_products_ots.php?action=list_products

Header Parameter Format
Token Base64_encode ()
Secret Base64_encode ()
E -Mail Base64_encode ()

Parameter Format Beschreibung Status Get

1, 2 oder 3
Es ist nur Zahl erforderlich < /p> search_model Get Produktmodell Suche Get Produktname Kategorie Get Kategorie Nummer
Nur Zahl ist erforderlich < /td> sort_order Get Glückliche Reihenfolge von:
sort_product_name
sort_date_added
sort_date_updated
sort_code
sort_quantity
sort_price
sort_bestseller < /td>

PHP -Probe:

 // Beispiellistenprodukte
 
 $ add_query_order = ' ' ;;
 if ($ _get [' Status ']! = ' ') {
 $ add_query_order.
 }
 if ($ _get [' Search_Model ']! = ' ') {
 $ add_query_order.
 }
 if ($ _get [' Suche ']! = ' ') {
 $ add_query_order.
 }
 if ($ _get [' Kategorie ']! = ' ') {
 $ add_query_order.
 }
 if ($ _get [' sort_order ']! = ' ') {
 $ add_query_order.
 }

 $ Url = $ tabain_url. ' /api_seller_products_others.php? Action = list_products ' $ add_query_order;

 $ Ch = curl_init ($ url);
 Curl_setopt ($ ch, curlopt_returntransfer, true);
 curl_setopt ($ ch, curlopt_sl_verifypeer, false);
 Curl_setopt ($ ch, curlopt_httpHeader, Array (Array (
 ' Inhaltstyp: Anwendung/JSON ',,
 "Cache-Control: No-Cache",
 ' Token: ' . Basis64_CODE ($ token),
 ' Geheimnis: ' . Basis64_CODE ($ Secret),
 ' E-Mail: ' . Basis64_CODE ($ E -Mail))))
 );
 
 $ result = curl_exec ($ ch);
 Curl_close ($ ch);

 print_r ($ result);

 // Beispiellistenprodukte EOF 

return:

products_id
Bild
Name
Modell
Menge
Status
DATE_ADDED
last_modified < /p>

URL: http://www.namedoseusiten.com.br/api_seller_products_ots.php?action=list_products_contacts

Header Parameter Format
Token Base64_encode ()
Secret Base64_encode ()
E -Mail Base64_encode ()

PHP -Probe:

 // Beispiellisten-Produktekontakte
 
 $ Url = $ tabain_url. ' /api_seller_products_others.php? Action = list_products_contacts ' ;;

 $ Ch = curl_init ($ url);
 Curl_setopt ($ ch, curlopt_returntransfer, true);
 curl_setopt ($ ch, curlopt_sl_verifypeer, false);
 Curl_setopt ($ ch, curlopt_httpHeader, Array (Array (
 ' Inhaltstyp: Anwendung/JSON ',,
 "Cache-Control: No-Cache",
 ' Token: ' . Basis64_CODE ($ token),
 ' Geheimnis: ' . Basis64_CODE ($ Secret),
 ' E-Mail: ' . Basis64_CODE ($ E -Mail))))
 );
 
 $ result = curl_exec ($ ch);
 Curl_close ($ ch);

 print_r ($ result);

 // Beispiellisten -Produkte Kontakte eof 

return:

id
text < /p>

Post: http://www.namedoseusiten.com.br/api_seller_products_others.php?action=update_products_contacts

Header Parameter Format
Token Base64_encode ()
Secret Base64_encode ()
E -Mail Base64_encode ()

Parameter Format Beschreibung pc_id json

PC ID
Nur Zahl ist erforderlich
Format: int (11)
* Feld erforderlich < /p> Antwort json Nur Zahl ist erforderlich
Format: varchar (255)
* Feld erforderlich < /td>

PHP -Probe

 // Probe Produktkontakte bearbeiten
 
 $ Url = $ tabain_url. ' /api_seller_products_others.php? Action = update_products_contacts ' ;;

 $ data = array ("pc_id" = & gt; $ _get [' PC_ID '], // PC -ID (nur die Nummer ist aufgestellt) * Feld erforderlich
 "Antwort" = & gt; $ _Get [' Antwort '] // Die Antwort
 );
 
 $ data_string = json_encode ($ date);

 $ Ch = curl_init ($ url);
 Curl_setopt ($ ch, curlopt_customrequest, "post");
 Curl_setopt ($ ch, curlopt_postfields, $ data_string);
 Curl_setopt ($ ch, curlopt_returntransfer, true);
 curl_setopt ($ ch, curlopt_sl_verifypeer, false);
 Curl_setopt ($ ch, curlopt_httpHeader, Array (Array (
 ' Inhaltstyp: Anwendung/JSON ',,
 "Cache-Control: No-Cache",
 ' Token: ' . Basis64_CODE ($ token),
 ' Geheimnis: ' . Basis64_CODE ($ Secret),
 ' E-Mail: ' . Basis64_CODE ($ E -Mail),
 ' Inhaltslänge: ' . Strlen ($ data_string))))
 );
 
 $ result = curl_exec ($ ch);
 Curl_close ($ ch);

 print_r ($ result);
 
 // Probe Produce Products Kontakte EOF 

Rückgabefehler:

Code
Nachricht < /p>

Erfolgserfolg:

Code
pc_id
Nachricht < /p>