Skip to content

Instantly share code, notes, and snippets.

@reginaldojunior
Created October 2, 2017 13:54
Show Gist options
  • Save reginaldojunior/672df69b59068d0507e703681e737b1c to your computer and use it in GitHub Desktop.
Save reginaldojunior/672df69b59068d0507e703681e737b1c to your computer and use it in GitHub Desktop.
Create or Update Sku Example Plugg.to
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "http://api.plugg.to/skus/7899790901863?access_token=06553601e7f45b030948639f9ae96edce7c111a0",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => "{\n \"name\":\"Balde Decorado Cerveja metal 7,6L Imporiente\",\n \"sku\":\"7899790901863\",\n \"external\":\"1973458\",\n \"quantity\":\"21\",\n \"price\":\"39.99\",\n \"special_price\":\"24.99\",\n \"short_description\":null,\n \"description\":\"Para gelo, Bebidas, e decorar a Sua Casa. Para gelo, Bebidas, e decorar a Sua Casa. <br> ESCOLHA SUA estampa, e APROVEITE par\\u00e1grafo gelar A SUA bebida preferida com SEUS amigos. <br>\",\n \"brand\":null,\n \"ean\":\"7899790901863\",\n \"nbm\":null,\n \"isbn\":null,\n \"warranty_time\":null,\n \"warranty_message\":null,\n \"link\":null,\n \"origin\":null,\n \"available\":null,\n \"handling_time\":null,\n \"dimension\":{\n \"length\":\"20.00\",\n \"width\":\"20.00\",\n \"height\":\"25.00\",\n \"weight\":\"0.51\"\n },\n \"photos\":[\n {\n \"url\":\"https:\\/\\/xtechfiles-us.s3.amazonaws.com\\/uploads\\/images\\/medium\\/658fec17b638b2aedf512082d12a5920.jpg\"\n },\n {\n \"url\":\"https:\\/\\/xtechfiles-us.s3.amazonaws.com\\/uploads\\/images\\/medium\\/658fec17b638b2aedf512082d12a5920.jpg\",\n \"title\":\"Balde Decorado Cerveja metal 7,6L Imporiente\",\n \"order\":0\n },\n {\n \"url\":\"https:\\/\\/xtechfiles-us.s3.amazonaws.com\\/uploads\\/images\\/medium\\/250d1857ce1dd0e63f5737972947e2d7.png\"\n },\n {\n \"url\":\"https:\\/\\/xtechfiles-us.s3.amazonaws.com\\/uploads\\/images\\/medium\\/250d1857ce1dd0e63f5737972947e2d7.png\",\n \"title\":\"Balde Decorado Cerveja metal 7,6L Imporiente\",\n \"order\":1\n },\n {\n \"url\":\"https:\\/\\/xtechfiles-us.s3.amazonaws.com\\/uploads\\/images\\/medium\\/feff232203f7dd81925e87ce3edc8bb2.png\"\n },\n {\n \"url\":\"https:\\/\\/xtechfiles-us.s3.amazonaws.com\\/uploads\\/images\\/medium\\/feff232203f7dd81925e87ce3edc8bb2.png\",\n \"title\":\"Balde Decorado Cerveja metal 7,6L Imporiente\",\n \"order\":2\n }\n ],\n \"categories\":[\n {\n \"name\":\"Tudo\"\n },\n {\n \"name\":\"Artigos De Festa\"\n },\n {\n \"name\":\"Temporada de Ferias\"\n },\n {\n \"name\":\"Temporada Dos Pais\"\n }\n ]\n}",
CURLOPT_HTTPHEADER => array(
"cache-control: no-cache",
"content-type: application/json",
"postman-token: 7fc3f3e2-924f-68cc-59b3-2b4b9e15eb79"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment