Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
customer_portal:integration:iwashcloudbookingsapi [2021/02/19 02:24]
trevor [Return]
customer_portal:integration:iwashcloudbookingsapi [2023/09/20 00:43] (current)
Line 2: Line 2:
  
 This is a SERVER Side API. Who is supporting your website at the moment? This is a SERVER Side API. Who is supporting your website at the moment?
-If you do not have the ability to make server side API,we can provide this as a CLIENT side script to be copied onto your page.+If you do not have the ability to make server side API, we can provide this as a CLIENT side script to be copied onto your page.
  
-While the API can use JSON,XML,GET,POST. We would recommend using JSON.+This is a JSON API.
    * URL = /core/sales/bookings/booking_api.asp    * URL = /core/sales/bookings/booking_api.asp
    * LIVE = http://xxxx.iposwarehouse.com/core/sales/bookings/booking_api.asp    * LIVE = http://xxxx.iposwarehouse.com/core/sales/bookings/booking_api.asp
Line 10: Line 10:
 ===== Headers ===== ===== Headers =====
 <code html> <code html>
-Accept:         application/json\\ +Accept: application/json\\ 
-Content-Type:     application/json\\ +Content-Type: application/json\\ 
-Authorization:    Basic V0VCOkIwMEtJTkdTSEVSRQ==+Authorization: Basic {user}:{password}
 </code> </code>
  
 +{user}:{password} is Base64 Encoded. See librarires for your server side language.
 ===== Body ===== ===== Body =====
 <code AppleScript> <code AppleScript>
Line 24: Line 24:
  "BookingEmail":"john@gmail.com",  "BookingEmail":"john@gmail.com",
  "BookingName":"John",  "BookingName":"John",
 + "BookingSite":"Weeribee",
  "BookingTags":"WEB",  "BookingTags":"WEB",
- "BookingSite":"Weeribee"+ "BookingNotes":"Extra Dirty, Could you quote on Steam Clean"
  }  }
 } }
 </code> </code>
 +
 +==== Regos ====
 +need to be stripped of all spaces and symbols and will be converted to upper case.
 +
 +==== Dates ==== 
 +need to be in unambiguous format of DD-MON-YYYY HH:MM
 +
 +==== Tags ====
 +
 +Use Booking Tags, this can be used in reports to work out where booking might be generated from.
 +If you want to add extra tags like a campaign that generated them, comma separate the tags words.
 +
 +<code AppleScript>
 +"BookingTags":"WEB,FACEBOOK"
 +</code>
 +
 +==== Notes ====
 +
 +The Booking Notes field is text but can also be used to store custom fields that you can read back and use in the API. Insert text or send JSON and it will be stored in the Notes field
 +
 +As Text
 +
 +<code AppleScript>
 +"BookingNotes":"This is a text sample"
 +</code>
 +
 +As JSON
 +
 +<code AppleScript>
 +"BookingNotes":{"Colour":"Red","Size":"Small","Make":"Ford"}
 +</code>
 +
 +==== Site ====
 +
 +The API has some smarts and the BookingSite can be sent as either a string which matches the name of the store in the Sites Tabe, or you can send an integer which matches the record in the Sites Table. The API will take any string and try to match it to the a Site Name.
 +
 +<code AppleScript>
 +"BookingSite":1
 +</code>
 +
 +<code AppleScript>
 +"BookingSite":"Weeribee"
 +</code>
 +
  
 ===== Return ===== ===== Return =====
Line 41: Line 86:
  "BookingName":"John",  "BookingName":"John",
  "BookingTags":"WEB",  "BookingTags":"WEB",
- "BookingSite":"Weeribee",+        "BookingNotes":"Extra Dirty, Could you quote on Steam Clean", 
 + "SiteKey":"1", 
 + "SiteName":"Weeribee",
  "CreatedDteTme":"01-Jan-2018 11:00"  "CreatedDteTme":"01-Jan-2018 11:00"
  }  }
Line 66: Line 113:
  "BookingName":"John",  "BookingName":"John",
  "BookingTags":"WEB",  "BookingTags":"WEB",
- "BookingSite":"Weeribee",+        "BookingNotes":"Extra Dirty, Could you quote on Steam Clean", 
 + "SiteKey":"1", 
 + "SiteName":"Weeribee",
  "OrderKey":358210,  "OrderKey":358210,
  "OrderDteTme":"01-Jan-2018 16:04",  "OrderDteTme":"01-Jan-2018 16:04",
Line 84: Line 133:
 </code> </code>
  
-===== BEST PRACTICE ===== 
-Regos needs to be stripped of all spaces and symbols. 
  
-Use Booking Tags, this can be used in reports to work out where booking might be generated from. +
-If you want to add extra tags like a campaign then comma separate WEB,FACEBOOK+