Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. $url = 'https://integration-kilat-api.gojekapi.com/gokilat/v10/booking';
  2.  
  3. $ch = curl_init($url);
  4.  
  5. $header = array('Client-ID:omiyago-engine', 'Pass-Key:58796d5ed14dfa1a5267547194c03e88156841ef18549768d09ff29d4110374f', 'Accept:application/json', 'Content-Type:application/json');
  6.  
  7. $form = '{
  8. "paymentType": 0,
  9. "collection_location": "pickup",
  10. "shipment_method": "Instant",
  11. "routes": [
  12. {
  13. "originName": "",
  14. "originNote": "",
  15. "originContactName": "Testing Price",
  16. "originContactPhone": "085155439743",
  17. "originLatLong": "-6.257182,106.815275",
  18. "originAddress": "Jalan Kemang Selatan",
  19. "destinationName": "",
  20. "destinationNote": "",
  21. "destinationContactName": "Testing Juga",
  22. "destinationContactPhone": "081284967258",
  23. "destinationLatLong": "-6.257314,106.819658",
  24. "destinationAddress": "Blok M (Testing)",
  25. "item": "Led Tv 40 inc",
  26. "storeOrderId": "",
  27. "insuranceDetails": {
  28. "applied": "true",
  29. "fee": "2500",
  30. "product_description": "LED TV",
  31. "product_price": "3500000"
  32. }
  33. }
  34. ]
  35. }';
  36.  
  37. curl_setopt($ch, CURLOPT_POSTFIELDS, $form);
  38.  
  39. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  40.  
  41. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  42.  
  43. $result = curl_exec($ch);
  44.  
  45. curl_close($ch);
  46.  
  47. var_dump($result);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement