Advertisement
robjones90

Untitled

Nov 25th, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.54 KB | None | 0 0
  1. api/customers/ #Webhook
  2.  
  3. {
  4.     "count": 3,
  5.     "next": null,
  6.     "previous": null,
  7.     "results": [
  8.         {
  9.             "name": "Test Customer",
  10.             "phone_number": "1222222234",
  11.             "vehicle": "Batmobile",
  12.             "location": "Batcave",
  13.             "assigned_client": 3,
  14.             "problem": "This is the problem",
  15.             "map_directions": "860 E. Ave J-12\r\nLancaster, CA 93535",
  16.             "longitude": 34.5794,
  17.             "latitude": -118.1165
  18.         },
  19.         {
  20.             "name": "Testing3",
  21.             "phone_number": "1213217362",
  22.             "vehicle": "Honda Accord",
  23.             "location": "Boston, MA",
  24.             "assigned_client": 3,
  25.             "problem": "Lots of them",
  26.             "map_directions": "1850 E Avenue J Lancaster, CA 93535",
  27.             "longitude": 34.713292,
  28.             "latitude": -118.15292
  29.         },
  30.         {
  31.             "name": "1111",
  32.             "phone_number": "1111111111",
  33.             "vehicle": "111111111111",
  34.             "location": "Dodge City, KS",
  35.             "assigned_client": 3,
  36.             "problem": "11111111",
  37.             "map_directions": "Dodge City, KS",
  38.             "longitude": 37.690531,
  39.             "latitude": -99.902421
  40.         }
  41.     ]
  42. }
  43.  
  44. # /api/profiles/ Webhook
  45.  
  46. {
  47.     "count": 1,
  48.     "next": null,
  49.     "previous": null,
  50.     "results": [
  51.         {
  52.             "city": "2511 Rosamond Blvd, Rosamond, CA 93560",
  53.             "pk": 3,
  54.             "longitude": null,
  55.             "latitude": null
  56.         }
  57.     ]
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement