Skip to content

Instantly share code, notes, and snippets.

@acolin
Created August 11, 2016 20:06
Show Gist options
  • Save acolin/5c7102ed0930dd80a4f76f0509c9962b to your computer and use it in GitHub Desktop.
Save acolin/5c7102ed0930dd80a4f76f0509c9962b to your computer and use it in GitHub Desktop.
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "http://54.191.139.107/api/v2/orders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\n \"api_key\": \"abcdefghijk\",\n \"delivery\": {\n \"email\": \"ramirezgomez@gmail.com\",\n \"municipality\": \"San Pedro Garza Garcia\",\n \"name\": \"Arturo Gomez\",\n \"street_name_and_number\": \"Rio rosas 101\",\n \"neighborhood\": \"del valle\",\n \"telephone\": \"8114689871\"\n },\n \"pickup\": {\n \"email\": \"arnoldo@skydrop.com.mx\",\n \"municipality\": \"San Pedro Garza Garcia\",\n \"name\": \"skydrop tienda online\",\n \"street_name_and_number\": \"Rio Guadalquivir 422-A\",\n \"neighborhood\": \"del valle\",\n \"telephone\": \"814040 5222\"\n },\n \"service\": {\n \"ending_hour\": \"18:00\",\n \"schedule_date\": \"2016-08-11\",\n \"service_code\": \"EExps\",\n \"starting_hour\": \"16:00\",\n \"vehicle_type\": \"car\"\n }\n}",
CURLOPT_HTTPHEADER => array(
"cache-control: no-cache",
"content-type: application/json",
"postman-token: 6e0e1aa2-7605-47e1-371d-ae62dce35d66"
),
));
$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